commit | 2e236fb43bd08ef67115508c8e28ade7ad936aaa | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Thu Jun 27 21:20:28 2013 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Thu Jun 27 21:20:28 2013 +0000 |
tree | 999d5d0ae17c9c9d151ca50549c1c44a5e5fde29 | |
parent | bf516f7a5d3385ab9989220eface8d5709038924 [diff] [blame] |
Remove unnecessary check. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185108 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 0075223..e21acb1 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp
@@ -3727,7 +3727,7 @@ } } - if (S.getLangOpts().MicrosoftExt && isa<CXXUuidofExpr>(Arg)) { + if (isa<CXXUuidofExpr>(Arg)) { Converted = TemplateArgument(ArgIn); return false; }