diff options
| -rw-r--r-- | llvm/include/llvm/Support/CommandLine.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h index 35ec9c73aeb..9ae3d6af32e 100644 --- a/llvm/include/llvm/Support/CommandLine.h +++ b/llvm/include/llvm/Support/CommandLine.h @@ -31,7 +31,7 @@  #include <vector>  namespace llvm { -   +  /// cl Namespace - This namespace contains all of the command line option  /// processing machinery.  It is intentionally a short name to make qualified  /// usage concise. @@ -788,7 +788,7 @@ public:    DataType &getValue() { check(); return *Location; }    const DataType &getValue() const { check(); return *Location; } -   +    operator DataType() const { return this->getValue(); }  }; | 

