diff options
Diffstat (limited to 'llvm/lib/Demangle/ItaniumDemangle.cpp')
-rw-r--r-- | llvm/lib/Demangle/ItaniumDemangle.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/Demangle/ItaniumDemangle.cpp b/llvm/lib/Demangle/ItaniumDemangle.cpp index 7ac3eaddf4d..7b118dd06aa 100644 --- a/llvm/lib/Demangle/ItaniumDemangle.cpp +++ b/llvm/lib/Demangle/ItaniumDemangle.cpp @@ -14,15 +14,17 @@ // - All C++14 and C++17 features #include "llvm/Demangle/Demangle.h" -#include "llvm/Support/Compiler.h" -#include <vector> + +#include "llvm/Demangle/Compiler.h" + #include <algorithm> -#include <numeric> #include <cassert> +#include <cctype> #include <cstdio> #include <cstdlib> #include <cstring> -#include <cctype> +#include <numeric> +#include <vector> #ifdef _MSC_VER // snprintf is implemented in VS 2015 |