summaryrefslogtreecommitdiffstats
path: root/tools/clang/empty_string/tests/test-expected.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang/empty_string/tests/test-expected.cc')
-rw-r--r--tools/clang/empty_string/tests/test-expected.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/clang/empty_string/tests/test-expected.cc b/tools/clang/empty_string/tests/test-expected.cc
index 6762e37..3ae6702 100644
--- a/tools/clang/empty_string/tests/test-expected.cc
+++ b/tools/clang/empty_string/tests/test-expected.cc
@@ -13,8 +13,8 @@ void TestDeclarations() {
// Tests for std::string allocated with new.
void TestNew() {
- std::string* a = new std::string, *b = new std::string("abc"),
- *c = new std::string, *d = new std::string();
+ std::string *a = new std::string, *b = new std::string("abc"),
+ *c = new std::string, *d = new std::string();
}
// Tests for std::string construction in initializer lists.
@@ -43,4 +43,3 @@ void TestWideTemporaries(const std::wstring& reference_argument,
TestWideTemporaries(std::wstring(), std::wstring());
TestWideTemporaries(std::wstring(), std::wstring());
}
-