Replaced :: with _ in several path names

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103906 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-05-16 12:42:38 +00:00
parent 9de6e30761
commit 4bd6cc9f30
77 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <string>
// void pop_back();
#include <string>
#include <cassert>
template <class S>
void
test(S s, S expected)
{
s.pop_back();
assert(s.__invariants());
assert(s == expected);
}
int main()
{
typedef std::string S;
test(S("abcde"), S("abcd"));
test(S("abcdefghij"), S("abcdefghi"));
test(S("abcdefghijklmnopqrst"), S("abcdefghijklmnopqrs"));
}