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
/
abstract.cpp
Age
Commit message (
Expand
)
Author
2012-05-07
Detecting illegal instantiations of abstract types when using a function-styl...
Aaron Ballman
2011-10-13
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
Richard Smith
2011-02-22
When checking for abstract types, don't crash when we have a
Douglas Gregor
2011-02-19
Update the test error messages to match the update I made to the actual
Chandler Carruth
2011-02-18
Fix PR8767, improve diagnostic wording when allocating an object of an
Chandler Carruth
2010-08-18
Flesh out the test cases a little.
John McCall
2010-08-18
Rip out the existing retroactive abstract-class usage checker,
John McCall
2010-06-16
Fix the build. Using declarations should not be considering when looking
John McCall
2010-04-27
Diagnose the use of abstract types as array element types. Previously,
Douglas Gregor
2009-12-16
Correctly calcluate abstract-ness in the case where an implicitly declared
Eli Friedman
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-11-18
Track overriding methods when instantiating a template class. Fixes PR5550.
Sebastian Redl
2009-10-18
It's OK for a pure virtual function to override another pure virtual function...
Anders Carlsson
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-07-22
Prep for new warning.
Mike Stump
2009-05-30
Replace a cast with a dyn_cast as suggested by Doug.
Anders Carlsson
2009-05-30
Add a member lookup criteria constructor for searching for overridden virtual...
Anders Carlsson
2009-05-17
Rewrite PureVirtualMethodCollector to use the overridden methods. Fixes <rdar...
Anders Carlsson
2009-03-24
Fix the bug that Eli noticed where we wouldn't look at function decls outside...
Anders Carlsson
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-03-24
Handle pointers to arrays of abstract types.
Anders Carlsson
2009-03-24
More work on diagnosing abstract classes. We can now handle cases like
Anders Carlsson
2009-03-23
More improvements to abstract type checking. Handle arrays correctly, and mak...
Anders Carlsson
2009-03-23
It's an error to try to allocate an abstract object using new.
Anders Carlsson
2009-03-22
Disallow abstract types where appropriate.
Anders Carlsson
2009-03-22
Keep track of whether a class is abstract or not. This is currently only used...
Anders Carlsson