diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-09-10 08:13:48 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-09-10 08:13:48 +0000 |
commit | 3c0a78d2d028cdec935a7902728b0e2cf2b78eb5 (patch) | |
tree | b16b61abec1190d081b748f405bbacbaf9c13326 | |
parent | 5726d405e71f11feaaf0c8f518abe26e909537a4 (diff) |
Re-devirtualize this. A new virtual method snuck in.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113582 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Sema/Sema.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 250562c434..11306f7064 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -2166,10 +2166,10 @@ public: 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. |