diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-05-11 21:36:01 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-05-11 21:36:01 +0000 |
commit | 5b08a8a43254ed30bd953e869b0fd9fc1e8b82d0 (patch) | |
tree | 9e474cfa73c5c4fc9ceafa2f9bb651c8492a3204 /libcxx/include/stdbool.h | |
parent | 0547ad38e334146599521e455d0d6f83a117a60e (diff) | |
download | bcm5719-llvm-5b08a8a43254ed30bd953e869b0fd9fc1e8b82d0.tar.gz bcm5719-llvm-5b08a8a43254ed30bd953e869b0fd9fc1e8b82d0.zip |
Wiped out some non-ascii characters that snuck into the copyright.
llvm-svn: 103516
Diffstat (limited to 'libcxx/include/stdbool.h')
-rw-r--r-- | libcxx/include/stdbool.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/include/stdbool.h b/libcxx/include/stdbool.h index 3263659609f..8d8b2bb27e5 100644 --- a/libcxx/include/stdbool.h +++ b/libcxx/include/stdbool.h @@ -1,7 +1,7 @@ // -*- C++ -*- //===--------------------------- stdbool.h --------------------------------===// // -// ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure +// The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. @@ -31,13 +31,13 @@ Macros: #ifndef __cplusplus -#define bool _Bool +#define bool _Bool #if __STDC_VERSION__ < 199901L && __GNUC__ < 3 -typedef int _Bool; +typedef int _Bool; #endif -#define false (bool)0 -#define true (bool)1 +#define false (bool)0 +#define true (bool)1 #endif /* !__cplusplus */ |