[PATCH] D50042: Add include guard

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 2 02:46:34 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL338694: Add include guard (authored by stefan.graenitz, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D50042

Files:
  llvm/trunk/include/llvm/Demangle/Demangle.h


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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50042.158708.patch
Type: text/x-patch
Size: 500 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180802/db2ee1ed/attachment.bin>


More information about the llvm-commits mailing list