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