aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThan McIntosh <thanm@google.com>2019-07-19 13:13:54 +0000
committerTom Stellard <tstellar@redhat.com>2019-12-04 14:00:52 -0800
commit98b1752888c0282bf5504b67484b92d8d069f1b8 (patch)
tree3641e19d7528bd85baaae41f5386d1bcc7aa988d
parent474037d798d21313864fd9d43ea93ac8be695c61 (diff)
downloadllvm-98b1752888c0282bf5504b67484b92d8d069f1b8.zip
llvm-98b1752888c0282bf5504b67484b92d8d069f1b8.tar.gz
llvm-98b1752888c0282bf5504b67484b92d8d069f1b8.tar.bz2
Merging r366572:
------------------------------------------------------------------------ r366572 | thanm | 2019-07-19 06:13:54 -0700 (Fri, 19 Jul 2019) | 12 lines [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 ------------------------------------------------------------------------
-rw-r--r--llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h b/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
index da9d9d5..3d47471 100644
--- a/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
+++ b/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
@@ -16,6 +16,8 @@
#include "llvm/Demangle/DemangleConfig.h"
#include "llvm/Demangle/StringView.h"
#include <array>
+#include <cstdint>
+#include <string>
namespace llvm {
namespace itanium_demangle {