r202630 - [C++11] Remove an LLVM_OVERRIDE use that I missed in my previous commit.
Craig Topper
craig.topper at gmail.com
Sun Mar 2 02:02:44 PST 2014
Author: ctopper
Date: Sun Mar 2 04:02:43 2014
New Revision: 202630
URL: http://llvm.org/viewvc/llvm-project?rev=202630&view=rev
Log:
[C++11] Remove an LLVM_OVERRIDE use that I missed in my previous commit.
Modified:
cfe/trunk/lib/ASTMatchers/Dynamic/Marshallers.h
Modified: cfe/trunk/lib/ASTMatchers/Dynamic/Marshallers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/ASTMatchers/Dynamic/Marshallers.h?rev=202630&r1=202629&r2=202630&view=diff
==============================================================================
--- cfe/trunk/lib/ASTMatchers/Dynamic/Marshallers.h (original)
+++ cfe/trunk/lib/ASTMatchers/Dynamic/Marshallers.h Sun Mar 2 04:02:43 2014
@@ -637,7 +637,7 @@ public:
*LeastDerivedKind = Kind;
return true;
}
- bool isPolymorphic() const LLVM_OVERRIDE { return true; }
+ bool isPolymorphic() const override { return true; }
private:
const unsigned MinCount;
More information about the cfe-commits
mailing list