[llvm-branch-commits] [llvm] 98b1752 - Merging r366572:
Tom Stellard via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Dec 4 14:10:59 PST 2019
Author: Than McIntosh
Date: 2019-12-04T14:00:52-08:00
New Revision: 98b1752888c0282bf5504b67484b92d8d069f1b8
URL: https://github.com/llvm/llvm-project/commit/98b1752888c0282bf5504b67484b92d8d069f1b8
DIFF: https://github.com/llvm/llvm-project/commit/98b1752888c0282bf5504b67484b92d8d069f1b8.diff
LOG: 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
------------------------------------------------------------------------
Added:
Modified:
llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h b/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
index da9d9d5bfdc0..3d47471f0ef0 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 {
More information about the llvm-branch-commits
mailing list