summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2018-12-17 22:22:44 +0000
committerLouis Dionne <ldionne@apple.com>2018-12-17 22:22:44 +0000
commitc8ca4d8cc1b74fdddcf30770547ec22091dc4220 (patch)
tree86f1602d01d4fbca0117df506a7072945aa7b345
parent7e2975a44c69e5622f2122aeb04c2eb9e0cf70e0 (diff)
downloadbcm5719-llvm-c8ca4d8cc1b74fdddcf30770547ec22091dc4220.tar.gz
bcm5719-llvm-c8ca4d8cc1b74fdddcf30770547ec22091dc4220.zip
[libcxx][NFC] Properly indent nested #ifdefs and #defines
I just realized I had always been reading this wrong because of the lack of indentation, so I'm re-indenting this properly. llvm-svn: 349408
-rw-r--r--libcxx/include/__config14
1 files changed, 7 insertions, 7 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config
index b5e7b763210..72838764265 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -977,14 +977,14 @@ template <unsigned> struct __static_assert_check {};
// If we are getting operator new from the MSVC CRT, then allocation overloads
// for align_val_t were added in 19.12, aka VS 2017 version 15.3.
#if defined(_LIBCPP_MSVCRT) && defined(_MSC_VER) && _MSC_VER < 1912
-#define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
+# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
#elif defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME)
-#define _LIBCPP_DEFER_NEW_TO_VCRUNTIME
-#if !defined(__cpp_aligned_new)
-// We're defering to Microsoft's STL to provide aligned new et al. We don't
-// have it unless the language feature test macro is defined.
-#define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
-#endif
+# define _LIBCPP_DEFER_NEW_TO_VCRUNTIME
+# if !defined(__cpp_aligned_new)
+ // We're defering to Microsoft's STL to provide aligned new et al. We don't
+ // have it unless the language feature test macro is defined.
+# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
+# endif
#endif
#if defined(__APPLE__)
OpenPOWER on IntegriCloud