diff options
-rw-r--r-- | test/Sema/MicrosoftExtensions.c | 2 | ||||
-rw-r--r-- | test/SemaCXX/MicrosoftExtensions.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/MicrosoftExtensions.c b/test/Sema/MicrosoftExtensions.c index 59bf54eb62..cb9fee9dc1 100644 --- a/test/Sema/MicrosoftExtensions.c +++ b/test/Sema/MicrosoftExtensions.c @@ -76,6 +76,6 @@ struct X0 { enum E1 : seventeen; }; -enum : long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} +enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} SomeValue = 0x100000000 }; diff --git a/test/SemaCXX/MicrosoftExtensions.cpp b/test/SemaCXX/MicrosoftExtensions.cpp index 3592e2760a..30ad4d0482 100644 --- a/test/SemaCXX/MicrosoftExtensions.cpp +++ b/test/SemaCXX/MicrosoftExtensions.cpp @@ -119,6 +119,6 @@ struct X0 { enum E1 : seventeen; }; -enum : long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} +enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} SomeValue = 0x100000000 }; |