[NFC] include cstdint/string prior to using uint8_t/string

Summary: include proper header prior to use of uint8_t typedef
and std::string.

Subscribers: llvm-commits

Reviewers: cherry

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D64937

llvm-svn: 366572
This commit is contained in:
Than McIntosh 2019-07-19 13:13:54 +00:00
parent 4ccb7f8c45
commit b288d90b39
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,8 @@
#include "llvm/Demangle/DemangleConfig.h" #include "llvm/Demangle/DemangleConfig.h"
#include "llvm/Demangle/StringView.h" #include "llvm/Demangle/StringView.h"
#include <array> #include <array>
#include <cstdint>
#include <string>
namespace llvm { namespace llvm {
namespace itanium_demangle { namespace itanium_demangle {