index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaCXXScopeSpec.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Allow typo correction to try removing nested name specifiers.
Kaelyn Uhrain
2013-07-02
1
-3
/
+7
*
Remove dead code.
Eli Friedman
2013-06-19
1
-10
/
+0
*
Remove some no-op static_casts.
Richard Smith
2013-03-26
1
-12
/
+5
*
Use 'const Decl *' throughout code completion in Sema
Dmitri Gribenko
2013-01-23
1
-2
/
+2
*
s/CPlusPlus0x/CPlusPlus11/g
Richard Smith
2013-01-02
1
-3
/
+3
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-3
/
+3
*
Fix CXXRecordDecl::forallBases to not look through bases which are dependent
Richard Smith
2012-11-22
1
-9
/
+3
*
Fix typo correction of one qualified name to another.
David Blaikie
2012-10-12
1
-1
/
+2
*
Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType()
Douglas Gregor
2012-05-04
1
-3
/
+2
*
In C++11 mode, implement the C++11 semantics for
Douglas Gregor
2012-05-01
1
-2
/
+5
*
Support for definitions of member enumerations of class templates outside the
Richard Smith
2012-03-23
1
-4
/
+8
*
Instantiating a class template should not instantiate the definition of any
Richard Smith
2012-03-14
1
-31
/
+41
*
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-11
1
-7
/
+7
*
Added source location for the template keyword in DependentTemplateSpecializa...
Abramo Bagnara
2012-02-06
1
-0
/
+1
*
Added location for template keyword in TemplateSpecializationTypeLoc. In the ...
Abramo Bagnara
2012-02-06
1
-9
/
+8
*
Make the callback object to Sema::CorrectTypo mandatory.
Kaelyn Uhrain
2012-01-31
1
-1
/
+1
*
Added source location for the template keyword in AST template-id expressions.
Abramo Bagnara
2012-01-27
1
-4
/
+4
*
Remove unreachable code in Clang. (replace with llvm_unreachable where approp...
David Blaikie
2012-01-17
1
-5
/
+3
*
Convert SemaCXXScopeSpec.cpp to pass a callback object to CorrectTypo,
Kaelyn Uhrain
2012-01-12
1
-3
/
+22
*
Support decltype in nested-name-specifiers.
David Blaikie
2011-12-04
1
-0
/
+23
*
Add -Wc++98-compat warning for enumerations in nested name specifiers.
Richard Smith
2011-10-20
1
-0
/
+3
*
-Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 2.
Richard Smith
2011-10-18
1
-1
/
+1
*
Rename TagDecl::isDefinition -> isCompleteDefinition
John McCall
2011-10-07
1
-1
/
+1
*
Removing a bunch of dead returns/breaks after llvm_unreachables.
David Blaikie
2011-09-23
1
-1
/
+0
*
Switch assert(0/false) llvm_unreachable.
David Blaikie
2011-09-23
1
-1
/
+1
*
Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...
Francois Pichet
2011-09-17
1
-1
/
+1
*
In Microsoft mode, if we are within a templated function and we can't resolve...
Francois Pichet
2011-07-27
1
-0
/
+25
*
Fixed enum types can be complete without actually being valid to use
John McCall
2011-07-06
1
-6
/
+21
*
Add support for C++ namespace-aware typo correction, e.g., correcting
Douglas Gregor
2011-06-28
1
-14
/
+17
*
When checking a set of template parameter lists against a
Douglas Gregor
2011-05-15
1
-1
/
+1
*
Implement support for C++0x alias templates.
Richard Smith
2011-05-05
1
-6
/
+15
*
Clean up Sema::BuildCXXNestedNameSpecifier()'s creation of TypeLoc
Douglas Gregor
2011-05-04
1
-7
/
+15
*
Support for C++11 (non-template) alias declarations.
Richard Smith
2011-04-15
1
-2
/
+2
*
Teach Sema::ActOnCXXNestedNameSpecifier and Sema::CheckTemplateIdType
Douglas Gregor
2011-03-04
1
-0
/
+13
*
Push nested-name-specifier source-location information into dependent
Douglas Gregor
2011-03-01
1
-3
/
+3
*
Reinstate the introduction of source-location information for
Douglas Gregor
2011-03-01
1
-0
/
+1
*
When we encounter a dependent template name within a
Douglas Gregor
2011-02-28
1
-7
/
+60
*
Retain complete source-location information for C++
Douglas Gregor
2011-02-24
1
-0
/
+35
*
Teach NestedNameSpecifier to keep track of namespace aliases the same
Douglas Gregor
2011-02-24
1
-4
/
+5
*
Teach CXXScopeSpec to handle the extension of a nested-name-specifier
Douglas Gregor
2011-02-24
1
-85
/
+130
*
The member classes of a current instantiation aren't necessarily a
Douglas Gregor
2011-02-19
1
-8
/
+21
*
Change QualType::getTypePtr() to return a const pointer, then change a
John McCall
2011-01-19
1
-1
/
+0
*
Rename DeclContext::getLookupContext to getRedeclContext and change its seman...
Sebastian Redl
2010-08-31
1
-1
/
+1
*
Split out a header to hold APIs meant for the Sema implementation from Sema.h.
John McCall
2010-08-25
1
-1
/
+1
*
Abstract out passing around types and kill off ActionBase.
John McCall
2010-08-24
1
-8
/
+7
*
Another step in the process of making the parser depend on Sema:
John McCall
2010-08-20
1
-1
/
+1
*
Move Sema's headers into include/clang/Sema, renaming a few along the way.
Douglas Gregor
2010-08-12
1
-2
/
+2
*
When a nested-name-specifier refers into a current instantiation that has
Douglas Gregor
2010-07-28
1
-6
/
+13
*
When performing substitution of template arguments within the body of
Douglas Gregor
2010-07-08
1
-1
/
+1
*
When typo correction produces a result that is not of the kind we're
Douglas Gregor
2010-06-29
1
-1
/
+3
[next]