]> granicus.if.org Git - clang/commitdiff
Add missing include for cstdint to Visibility.h
authorRaphael Isemann <teemperor@gmail.com>
Mon, 21 May 2018 22:27:22 +0000 (22:27 +0000)
committerRaphael Isemann <teemperor@gmail.com>
Mon, 21 May 2018 22:27:22 +0000 (22:27 +0000)
Summary: We use uint8_t in this header, so we need to include cstdint.

Subscribers: cfe-commits

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

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@332913 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/Visibility.h

index d443608762154f2277c62fed64301d451c266fd9..c5ab62436fe0ef44dc7997d026ff20be75cdf341 100644 (file)
@@ -17,6 +17,7 @@
 
 #include "clang/Basic/Linkage.h"
 #include <cassert>
+#include <cstdint>
 
 namespace clang {