commit | 9f4f2078d62d5d0cab1cf0347bb02ac5d223d495 | [log] [tgz] |
---|---|---|
author | Francois Pichet <pichet2000@gmail.com> | Wed Sep 08 12:20:18 2010 +0000 |
committer | Francois Pichet <pichet2000@gmail.com> | Wed Sep 08 12:20:18 2010 +0000 |
tree | e7901c9ee1e5930e70d47624a19c2c88eba6cca4 | |
parent | e542972828ce89018a6bf3fbb06a9dc91815b243 [diff] [blame] |
Microsoft's __uuidof operator implementation part 1. llvm-svn: 113356
diff --git a/clang/lib/Parse/ParseExpr.cpp b/clang/lib/Parse/ParseExpr.cpp index c4beab1..6a7c723 100644 --- a/clang/lib/Parse/ParseExpr.cpp +++ b/clang/lib/Parse/ParseExpr.cpp
@@ -768,6 +768,9 @@ case tok::kw_typeid: Res = ParseCXXTypeid(); break; + case tok::kw___uuidof: + Res = ParseCXXUuidof(); + break; case tok::kw_this: Res = ParseCXXThis(); break;