From 3c0a78d2d028cdec935a7902728b0e2cf2b78eb5 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 10 Sep 2010 08:13:48 +0000 Subject: [PATCH] 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 --- include/clang/Sema/Sema.h | 8 ++++---- 1 file 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. -- 2.50.1