Add missing header guard.
authorBenjamin Kramer <benny.kra@googlemail.com>
Thu, 16 Oct 2014 10:10:07 +0000 (10:10 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Thu, 16 Oct 2014 10:10:07 +0000 (10:10 +0000)
llvm-svn: 219922

llvm/include/llvm/Support/Options.h

index 1e387a8..4fd1bff 100644 (file)
@@ -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