index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
SemaCXX
/
virtual-override.cpp
Age
Commit message (
Expand
)
Author
2011-10-13
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
Richard Smith
2011-02-18
Fix PR8767, improve diagnostic wording when allocating an object of an
Chandler Carruth
2011-02-14
When parsing an out-of-line member function declaration, we must delay
John McCall
2011-01-04
Enhance the diagnostic for negative array sizes to include the
Chandler Carruth
2010-10-13
Diagnose when a 'static' member function overrides a virtual function
Douglas Gregor
2010-09-05
'const std::type_info*' instead of 'std::type_info const*'
Chris Lattner
2010-04-09
Turn access control on by default in -cc1.
John McCall
2010-03-10
When pretty-printing tag types, only print the tag if we're in C (and
John McCall
2010-02-15
Defer covariance checks for dependent types. Add test cases that also ensure
Chandler Carruth
2010-02-10
Improve access control diagnostics. Perform access control on member-pointer
John McCall
2010-01-22
No need to canonicalize the type and use dyn_cast. Also, correctly diagnose t...
Anders Carlsson
2010-01-22
Fix an obvious goof that caused us to only see the top level of return types
Chandler Carruth
2009-12-31
Make sure that an overriding return type is complete before checking if it's ...
Anders Carlsson
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-03
Unify the end-of-class code paths used by the parser and template
Douglas Gregor
2009-12-01
Funtion templates and function template specializations do not
Douglas Gregor
2009-12-01
Move the checking of overridden virtual functions into the code path
Douglas Gregor
2009-12-01
An inherited virtual (where "virtual" wasn't written explicitly) can
Douglas Gregor
2009-05-14
Check that the function being overridden is virtual.
Anders Carlsson
2009-05-14
Fix the same speling error in the test case (Duh).
Anders Carlsson
2009-05-14
Better diagnostics for covariance when checking overriding return types.
Anders Carlsson
2009-05-14
Add return type checking for overriding virtual functions. We currently don't...
Anders Carlsson