Deleted Added
full compact
BreakpointLocationCollection.cpp (254729) BreakpointLocationCollection.cpp (280031)
1//===-- BreakpointLocationCollection.cpp ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 182 unchanged lines hidden (view full) ---

191
192 for (pos = begin; pos != end; ++pos)
193 {
194 if (pos != begin)
195 s->PutChar(' ');
196 (*pos)->GetDescription(s, level);
197 }
198}
1//===-- BreakpointLocationCollection.cpp ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 182 unchanged lines hidden (view full) ---

191
192 for (pos = begin; pos != end; ++pos)
193 {
194 if (pos != begin)
195 s->PutChar(' ');
196 (*pos)->GetDescription(s, level);
197 }
198}
199