diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-05 04:47:09 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-05 04:47:09 +0000 |
commit | d473363876d4b582c3bea969f4a4efffa7607f87 (patch) | |
tree | 27b188c9c0469ffa0437d77407ec520cb9920c56 /clang/test/Parser/MicrosoftExtensions.cpp | |
parent | 62acf8624c135d6d679d94bbc22711b92a9ea781 (diff) | |
download | bcm5719-llvm-d473363876d4b582c3bea969f4a4efffa7607f87.tar.gz bcm5719-llvm-d473363876d4b582c3bea969f4a4efffa7607f87.zip |
Correct hyphenations in comments and assert messages
This patch tries to avoid unrelated changes other than fixing a few
hyphen-related ambiguities in nearby lines.
llvm-svn: 196466
Diffstat (limited to 'clang/test/Parser/MicrosoftExtensions.cpp')
-rw-r--r-- | clang/test/Parser/MicrosoftExtensions.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/clang/test/Parser/MicrosoftExtensions.cpp b/clang/test/Parser/MicrosoftExtensions.cpp index 8c1497a9472..2ed0c8ad59b 100644 --- a/clang/test/Parser/MicrosoftExtensions.cpp +++ b/clang/test/Parser/MicrosoftExtensions.cpp @@ -242,10 +242,10 @@ int __if_exists_test() { b++; } __if_exists(IF_EXISTS::Type_not) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type_not) { b++; @@ -259,11 +259,11 @@ __if_exists(IF_EXISTS::Type) { } __if_exists(IF_EXISTS::Type_not) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type_not) { @@ -280,7 +280,7 @@ int __if_exists_init_list() { int array2[] = { 0, - __if_exists(IF_EXISTS::Type_not) { this wont compile } + __if_exists(IF_EXISTS::Type_not) { this will not compile } 3 }; @@ -292,7 +292,7 @@ int __if_exists_init_list() { int array4[] = { 0, - __if_not_exists(IF_EXISTS::Type) { this wont compile } + __if_not_exists(IF_EXISTS::Type) { this will not compile } 3 }; @@ -309,11 +309,11 @@ class IF_EXISTS_CLASS_TEST { } __if_exists(IF_EXISTS::Type_not) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type) { - this wont compile. + this will not compile. } __if_not_exists(IF_EXISTS::Type_not) { |