diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 23:16:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 23:16:09 +0000 |
commit | 3e1a69ca0592afdcce2c05f120768bfca5b39fd2 (patch) | |
tree | cf4e751a5acecc4b89a851555ce4538e526f2d31 /include/llvm/Support/FormattedStream.h | |
parent | b8a21d922ee13763449dc4e7ef9f36ab73efd6d0 (diff) | |
download | external_llvm-3e1a69ca0592afdcce2c05f120768bfca5b39fd2.zip external_llvm-3e1a69ca0592afdcce2c05f120768bfca5b39fd2.tar.gz external_llvm-3e1a69ca0592afdcce2c05f120768bfca5b39fd2.tar.bz2 |
switch formattedstream to use raw_ostream::indent. This eliminates
the weird MAX_COLUMN_PAD limitation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/FormattedStream.h')
-rw-r--r-- | include/llvm/Support/FormattedStream.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h index 3a87205..768b8ed 100644 --- a/include/llvm/Support/FormattedStream.h +++ b/include/llvm/Support/FormattedStream.h @@ -33,11 +33,6 @@ namespace llvm /// const static bool PRESERVE_STREAM = false; - /// MAX_COLUMN_PAD - This is the maximum column padding we ever - /// expect to see. - /// - const static unsigned MAX_COLUMN_PAD = 100; - private: /// TheStream - The real stream we output to. We set it to be /// unbuffered, since we're already doing our own buffering. |