[llvm] r366572 - [NFC] include cstdint/string prior to using uint8_t/string
Than McIntosh via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 19 06:13:54 PDT 2019
Author: thanm
Date: Fri Jul 19 06:13:54 2019
New Revision: 366572
URL: http://llvm.org/viewvc/llvm-project?rev=366572&view=rev
Log:
[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
Modified:
llvm/trunk/include/llvm/Demangle/MicrosoftDemangleNodes.h
Modified: llvm/trunk/include/llvm/Demangle/MicrosoftDemangleNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Demangle/MicrosoftDemangleNodes.h?rev=366572&r1=366571&r2=366572&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Demangle/MicrosoftDemangleNodes.h (original)
+++ llvm/trunk/include/llvm/Demangle/MicrosoftDemangleNodes.h Fri Jul 19 06:13:54 2019
@@ -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-commits
mailing list