[cfe-commits] r113582 - /cfe/trunk/include/clang/Sema/Sema.h

Chandler Carruth chandlerc at gmail.com
Fri Sep 10 01:13:48 PDT 2010


Author: chandlerc
Date: Fri Sep 10 03:13:48 2010
New Revision: 113582

URL: http://llvm.org/viewvc/llvm-project?rev=113582&view=rev
Log:
Re-devirtualize this. A new virtual method snuck in.

Modified:
    cfe/trunk/include/clang/Sema/Sema.h

Modified: cfe/trunk/include/clang/Sema/Sema.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/Sema.h?rev=113582&r1=113581&r2=113582&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/Sema.h (original)
+++ cfe/trunk/include/clang/Sema/Sema.h Fri Sep 10 03:13:48 2010
@@ -2166,10 +2166,10 @@
                             SourceLocation RParenLoc);
 
   /// ActOnCXXUuidof - Parse __uuidof( something ).
-  virtual ExprResult ActOnCXXUuidof(SourceLocation OpLoc,
-                                    SourceLocation LParenLoc, bool isType,
-                                    void *TyOrExpr,
-                                    SourceLocation RParenLoc);
+  ExprResult ActOnCXXUuidof(SourceLocation OpLoc,
+                            SourceLocation LParenLoc, bool isType,
+                            void *TyOrExpr,
+                            SourceLocation RParenLoc);
 
 
   //// ActOnCXXThis -  Parse 'this' pointer.





More information about the cfe-commits mailing list