From: Benjamin Kramer Date: Thu, 16 Oct 2014 10:10:07 +0000 (+0000) Subject: Add missing header guard. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=fa4129347ff209f580a5fb57c53d60a13ac685e6;hp=4eb03123dfda2de88a84852834845678833c8c36 Add missing header guard. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219922 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Options.h b/include/llvm/Support/Options.h index 1e387a8353f..4fd1bff358f 100644 --- 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