[libcxx] r176568 - Correct silly type-o. Thanks Richard.
Howard Hinnant
hhinnant at apple.com
Wed Mar 6 10:16:12 PST 2013
Author: hhinnant
Date: Wed Mar 6 12:16:12 2013
New Revision: 176568
URL: http://llvm.org/viewvc/llvm-project?rev=176568&view=rev
Log:
Correct silly type-o. Thanks Richard.
Modified:
libcxx/trunk/include/bitset
Modified: libcxx/trunk/include/bitset
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/bitset?rev=176568&r1=176567&r2=176568&view=diff
==============================================================================
--- libcxx/trunk/include/bitset (original)
+++ libcxx/trunk/include/bitset Wed Mar 6 12:16:12 2013
@@ -253,7 +253,7 @@ __bitset<_N_words, _Size>::__bitset(unsi
: __first_{__v}
#elif __SIZE_WIDTH__ == 32
: __first_{__v, __v >> __bits_per_word}
-#elif
+#else
#error This constructor has not been ported to this platform
#endif
#endif
More information about the cfe-commits
mailing list