diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:01 +0000 |
commit | 1b0a63fa6450fdf60ae79969ae55fd001cb3b5b3 (patch) | |
tree | 6c7e0a97157faa398772752d9d43a80d85b859d0 /lib/Analysis/IntervalPartition.cpp | |
parent | 49af5e4131d0ac957cbab2a3521517aca62e79ed (diff) |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3185 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IntervalPartition.cpp')
-rw-r--r-- | lib/Analysis/IntervalPartition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IntervalPartition.cpp b/lib/Analysis/IntervalPartition.cpp index 97e8b71572..30bf02e9ee 100644 --- a/lib/Analysis/IntervalPartition.cpp +++ b/lib/Analysis/IntervalPartition.cpp @@ -26,7 +26,7 @@ void IntervalPartition::destroy() { RootInterval = 0; } -void IntervalPartition::print(ostream &O) const { +void IntervalPartition::print(std::ostream &O) const { std::copy(begin(), end(), std::ostream_iterator<const Interval *>(O, "\n")); } |