diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-08-10 14:49:24 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-08-10 14:49:24 +0000 |
commit | 1e67278dd53de90b0ea9d39c345383d5a9f2bf86 (patch) | |
tree | e475f11d7b8e6031da135db9458902e4c2cb2c2b /include/llvm/Support/CommandLine.h | |
parent | 0db86fe09729866473f5d6df24328eca0cf3883f (diff) | |
download | external_llvm-1e67278dd53de90b0ea9d39c345383d5a9f2bf86.zip external_llvm-1e67278dd53de90b0ea9d39c345383d5a9f2bf86.tar.gz external_llvm-1e67278dd53de90b0ea9d39c345383d5a9f2bf86.tar.bz2 |
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110679 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 35ec9c7..9ae3d6a 100644 --- a/include/llvm/Support/CommandLine.h +++ b/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(); } }; |