[clang-tools-extra] r271638 - [include-fixer] fixed a wrong header mapping.

Eric Liu via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 3 02:33:22 PDT 2016


Author: ioeric
Date: Fri Jun  3 04:33:22 2016
New Revision: 271638

URL: http://llvm.org/viewvc/llvm-project?rev=271638&view=rev
Log:
[include-fixer] fixed a wrong header mapping.

Modified:
    clang-tools-extra/trunk/include-fixer/find-all-symbols/STLPostfixHeaderMap.cpp

Modified: clang-tools-extra/trunk/include-fixer/find-all-symbols/STLPostfixHeaderMap.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/include-fixer/find-all-symbols/STLPostfixHeaderMap.cpp?rev=271638&r1=271637&r2=271638&view=diff
==============================================================================
--- clang-tools-extra/trunk/include-fixer/find-all-symbols/STLPostfixHeaderMap.cpp (original)
+++ clang-tools-extra/trunk/include-fixer/find-all-symbols/STLPostfixHeaderMap.cpp Fri Jun  3 04:33:22 2016
@@ -63,7 +63,7 @@ const HeaderMapCollector::HeaderMap *get
       {"include/stdalign.h", "<cstdalign>"},
       {"include/stdarg.h", "<cstdarg>"},
       {"include/stdbool.h", "<cstdbool>"},
-      {"include/stddef.h", "<cwchar>"},
+      {"include/stddef.h", "<cstddef>"},
       {"include/stdint.h", "<cstdint>"},
       {"include/tbmintrin.h", "<x86intrin.h>"},
       {"include/tmmintrin.h", "<tmmintrin.h>"},




More information about the cfe-commits mailing list