From: Than McIntosh Date: Fri, 19 Jul 2019 13:13:54 +0000 (+0000) Subject: [PATCH] [NFC] include cstdint/string prior to using uint8_t/string X-Git-Tag: archive/raspbian/1%8.0.1-10+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5e2bc4e7a9979f1a0036bd6fc78e218cf57c584e;p=llvm-toolchain-8.git [PATCH] [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 Gbp-Pq: Name b288d90b39f4b905c02092a9bfcfd6d78f99b191.patch --- diff --git a/include/llvm/Demangle/MicrosoftDemangleNodes.h b/include/llvm/Demangle/MicrosoftDemangleNodes.h index 9e3478e9f..efd553394 100644 --- a/include/llvm/Demangle/MicrosoftDemangleNodes.h +++ b/include/llvm/Demangle/MicrosoftDemangleNodes.h @@ -4,6 +4,8 @@ #include "llvm/Demangle/Compiler.h" #include "llvm/Demangle/StringView.h" #include +#include +#include class OutputStream;