Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-02-23When checking for abstract types, don't crash when we have aDouglas Gregor
2011-02-19Update the test error messages to match the update I made to the actualChandler Carruth
2011-02-19Fix PR8767, improve diagnostic wording when allocating an object of anChandler Carruth
2010-08-18Flesh out the test cases a little.John McCall
2010-08-18Rip out the existing retroactive abstract-class usage checker,John McCall
2010-06-16Fix the build. Using declarations should not be considering when lookingJohn McCall
2010-04-27Diagnose the use of abstract types as array element types. Previously,Douglas Gregor
2009-12-16Correctly calcluate abstract-ness in the case where an implicitly declaredEli Friedman
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-11-19Track overriding methods when instantiating a template class. Fixes PR5550.Sebastian Redl
2009-10-18It's OK for a pure virtual function to override another pure virtual function...Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-07-22Prep for new warning.Mike Stump
2009-05-30Replace a cast with a dyn_cast as suggested by Doug.Anders Carlsson
2009-05-30Add a member lookup criteria constructor for searching for overridden virtual...Anders Carlsson
2009-05-17Rewrite PureVirtualMethodCollector to use the overridden methods. Fixes <rdar...Anders Carlsson
2009-03-24Fix the bug that Eli noticed where we wouldn't look at function decls outside...Anders Carlsson
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-03-24Handle pointers to arrays of abstract types.Anders Carlsson
2009-03-24More work on diagnosing abstract classes. We can now handle cases likeAnders Carlsson
2009-03-23More improvements to abstract type checking. Handle arrays correctly, and mak...Anders Carlsson
2009-03-23It's an error to try to allocate an abstract object using new.Anders Carlsson
2009-03-22Disallow abstract types where appropriate.Anders Carlsson
2009-03-22Keep track of whether a class is abstract or not. This is currently only used...Anders Carlsson