Age | Commit message (Expand) | Author |
2012-01-14 | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor |
2012-01-13 | PR11754: Reject non-static constexpr member functions in classes with virtual | Richard Smith |
2012-01-13 | constexpr is allowed on static member functions of non-literal classes. Per ... | Eli Friedman |
2012-01-11 | Fix the caching in CorrectTypo so that other non-keyword identifiers | Kaelyn Uhrain |
2012-01-11 | Add initial callback object support to Sema::CorrectTypo. | Kaelyn Uhrain |
2012-01-10 | When something goes wrong in type-checking a namespace definition, make the n... | Douglas Gregor |
2012-01-10 | Remove a set, but unused variable. Found with GCC's warning. | Chandler Carruth |
2012-01-10 | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith |
2012-01-07 | Switch NamespaceDecl from its own hand-rolled redeclaration chain over | Douglas Gregor |
2012-01-05 | Tweak the fix to PR8977: an empty expression-list represents value initializa... | Eli Friedman |
2012-01-05 | More lambda work. Tweak the Sema interface slightly. Start adding the pieces... | Eli Friedman |
2011-12-24 | Always implicitly declare move assignment operations for dynamic classes, in | Richard Smith |
2011-12-22 | PR11614: Mark defaulted special constructors as constexpr if their implicit | Richard Smith |
2011-12-20 | Unlike in C++03, a constant-expression is not an unevaluated operand in C++11. | Richard Smith |
2011-12-14 | Produce more detailed diagnostics when static_assert condition is not an ICE. | Richard Smith |
2011-12-10 | Make sure that we infer __strong, etc. when we instantiate variables | Douglas Gregor |
2011-12-09 | Provide a separate warning for weak vtables in explicit template instantiatio... | David Blaikie |
2011-11-28 | When synthesizing an implicitly-defined copy or move constructor, or | Douglas Gregor |
2011-11-17 | Include named unions in union member init checking | David Blaikie |
2011-11-12 | Remove unnecessary 'else's after 'return's. | David Blaikie |
2011-11-07 | constexpr: static data members declared constexpr are required to have an | Richard Smith |
2011-11-03 | When we're checking a friend function template in an out-of-line class | Douglas Gregor |
2011-11-02 | Don't build member initializers for zero-length or incomplete arrays, | Douglas Gregor |
2011-11-01 | When we run into a constructor or destructor that is defined in the | Douglas Gregor |
2011-11-01 | Silence a warning in -Asserts builds | Matt Beaumont-Gay |
2011-11-01 | Rework the AST for the initializer of a delegating constructor, so | Douglas Gregor |
2011-10-29 | Fixed FriendDecl source locations. | Abramo Bagnara |
2011-10-24 | Minor refactoring of my last patch. Per Doug's suggestion. | Fariborz Jahanian |
2011-10-23 | Diagnose unexpanded parameter packs in member initialisers (including | Peter Collingbourne |
2011-10-23 | Clean up duplicated code in Sema::BuildMemInitializer. | Peter Collingbourne |
2011-10-21 | c++: support gcc's application of weak attribute on | Fariborz Jahanian |
2011-10-20 | There's no point in marking a declaration invalid just because it | Douglas Gregor |
2011-10-20 | When we parse something that looks like a templated friend tag but | Douglas Gregor |
2011-10-18 | -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 2. | Richard Smith |
2011-10-18 | -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. | Richard Smith |
2011-10-18 | In C++11, a class's members are allowed to be nominated as friends. | Richard Smith |
2011-10-13 | Allow for annotate attributes after access specifiers. When such | Erik Verbruggen |
2011-10-11 | Get rid of ShouldDeleteMoveConstructor. | Sean Hunt |
2011-10-11 | Consolidate copy constructor deletion into ShouldDeleteSpecialMember. | Sean Hunt |
2011-10-11 | Move some bool flags out of function parameter lists. | Kaelyn Uhrain |
2011-10-10 | Constant expression evaluation refactoring: | Richard Smith |
2011-10-10 | Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289. | Douglas Gregor |
2011-10-10 | constexpr: Disable checking of constructor member initializer lists for | Richard Smith |
2011-10-10 | When adding a direct initializer to a declaration, allow the | Douglas Gregor |
2011-10-10 | Parse the initializer for a class member after handling its | Douglas Gregor |
2011-10-10 | Begin work consolidating ShouldDelete* functions. | Sean Hunt |
2011-10-10 | Implement the restrictions in C++ [class.friend]p6, which disallow | Douglas Gregor |
2011-10-09 | Diagnose attempts to declare a non-static data member with a | Douglas Gregor |
2011-10-06 | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman |
2011-10-05 | Added a flag to identify resolved overloaded function references. | Abramo Bagnara |