diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-01-06 15:23:02 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-01-06 15:23:02 +0000 |
| commit | a889636aa0c338e29a98321c7d4bb671b9105aa4 (patch) | |
| tree | 2c1714d8f97dc9c9b2a6baf063cd39b40fed0ba3 | |
| parent | d6a729bb8542b5ad90b93e9f6653410329ed9fdf (diff) | |
| download | bcm5719-llvm-a889636aa0c338e29a98321c7d4bb671b9105aa4.tar.gz bcm5719-llvm-a889636aa0c338e29a98321c7d4bb671b9105aa4.zip | |
Removed extra trailing underscore in #ifdef (__GNUC___ --> __GNUC__ )
llvm-svn: 198618
| -rw-r--r-- | libcxx/include/__config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config index 8aa57acfd72..f33e25be5a7 100644 --- a/libcxx/include/__config +++ b/libcxx/include/__config @@ -478,7 +478,7 @@ namespace std { } } -#endif // __clang__ || __GNUC___ || _MSC_VER || __IBMCPP__ +#endif // __clang__ || __GNUC__ || _MSC_VER || __IBMCPP__ #ifdef _LIBCPP_HAS_NO_UNICODE_CHARS typedef unsigned short char16_t; |

