aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-08-10 14:49:24 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-08-10 14:49:24 +0000
commitfc838009d67934ce1e3923fdeaebc8f3d9f1fe14 (patch)
treeae7073bee1866264d1a607b62744632ba818d0cf
parent7058c265f56d62185e4fb27ea62b01dbb99cd50d (diff)
downloadllvm-fc838009d67934ce1e3923fdeaebc8f3d9f1fe14.zip
llvm-fc838009d67934ce1e3923fdeaebc8f3d9f1fe14.tar.gz
llvm-fc838009d67934ce1e3923fdeaebc8f3d9f1fe14.tar.bz2
Trailing whitespace.
llvm-svn: 110679
-rw-r--r--llvm/include/llvm/Support/CommandLine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h
index 35ec9c7..9ae3d6af 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(); }
};