Cleanup __config indention NFC
authorLogan Chien <tzuhsiang.chien@gmail.com>
Sat, 24 Feb 2018 07:57:32 +0000 (07:57 +0000)
committerLogan Chien <tzuhsiang.chien@gmail.com>
Sat, 24 Feb 2018 07:57:32 +0000 (07:57 +0000)
commit2b772b930e097ed6f06d698a51e291c7fd318baa
treedc3a7f000a935f20687ec8a8558b7ceeee2bbba2
parentdc1797e3465b79633bd136db32fa14a2f10a75d5
Cleanup __config indention  NFC

This commit indents each level by two space characters, e.g.

#if defined(CONDITION)
#  define _LIBCPP_NAME VALUE
#else
#  define _LIBCPP_NAME VALUE
#endif

The simple #ifndef, #define, and #endif sequences are not indented, e.g.

#ifndef _LIBCPP_NAME
#define _LIBCPP_NAME ...
#endif

llvm-svn: 326027
libcxx/include/__config