replace tabs with 4 spaces

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@680 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-06-19 12:39:09 +00:00
parent 963152efd4
commit 30f4e933c1
14 changed files with 298 additions and 283 deletions

View file

@ -122,7 +122,7 @@ public:
typedef typename A::pointer iterator;
typedef typename A::const_pointer const_iterator;
AllocatorStringStorage()
AllocatorStringStorage()
: A(), pData_(0)
{
}
@ -231,12 +231,12 @@ public:
swap(newStr);
}
template <class ForwardIterator>
void append(ForwardIterator b, ForwardIterator e)
template <class ForwardIterator>
void append(ForwardIterator b, ForwardIterator e)
{
const size_type
sz = std::distance(b, e),
neededCapacity = size() + sz;
const size_type
sz = std::distance(b, e),
neededCapacity = size() + sz;
if (capacity() < neededCapacity)
{
@ -245,7 +245,7 @@ public:
assert(!(le(begin(), &*b) && le(&*b, end())));
reserve(neededCapacity);
}
std::copy(b, e, end());
std::copy(b, e, end());
pData_->pEnd_ += sz;
}