1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Add include guard

Summary: Add missing include guard LLVM_DEMANGLE_DEMANGLE_H in llvm/Demangle/Demangle.h

Reviewers: erik.pilkington

Subscribers: llvm-commits

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

llvm-svn: 338694
This commit is contained in:
Stefan Granitz 2018-08-02 09:45:59 +00:00
parent c8932c8635
commit f43b171255

View File

@ -7,6 +7,9 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLVM_DEMANGLE_DEMANGLE_H
#define LLVM_DEMANGLE_DEMANGLE_H
#include <cstddef> #include <cstddef>
namespace llvm { namespace llvm {
@ -88,3 +91,5 @@ private:
void *Context; void *Context;
}; };
} // namespace llvm } // namespace llvm
#endif