projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4eb0312
)
Add missing header guard.
author
Benjamin Kramer
<benny.kra@googlemail.com>
Thu, 16 Oct 2014 10:10:07 +0000
(10:10 +0000)
committer
Benjamin Kramer
<benny.kra@googlemail.com>
Thu, 16 Oct 2014 10:10:07 +0000
(10:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219922
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/Options.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/Options.h
b/include/llvm/Support/Options.h
index
1e387a8
..
4fd1bff
100644
(file)
--- a/
include/llvm/Support/Options.h
+++ b/
include/llvm/Support/Options.h
@@
-34,6
+34,9
@@
///
//===----------------------------------------------------------------------===//
+#ifndef LLVM_SUPPORT_OPTIONS_H
+#define LLVM_SUPPORT_OPTIONS_H
+
#include "llvm/ADT/DenseMap.h"
#include "llvm/Support/CommandLine.h"
@@
-113,3
+116,5
@@
public:
};
} // namespace llvm
+
+#endif