summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2012-02-02 22:00:52 +0000
committerHoward Hinnant <hhinnant@apple.com>2012-02-02 22:00:52 +0000
commit8e0a2d23782634460d66bf45e6c781c2f0111859 (patch)
treeb68747811ac33f53c7efb512b3c6bccd5245ee2d /test
parent0240685ed6756ee0eed7c76e37eb2abdc01dcf82 (diff)
downloadlibcxxabi_35a-8e0a2d23782634460d66bf45e6c781c2f0111859.tar.gz
corrected namespace in test
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@149635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/test_demangle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_demangle.cpp b/test/test_demangle.cpp
index 478bbe3..44d3f6b 100644
--- a/test/test_demangle.cpp
+++ b/test/test_demangle.cpp
@@ -29575,7 +29575,7 @@ void test()
for (unsigned i = 0; i < N; ++i)
{
int status;
- char* demang = abi::__cxa_demangle(cases[i][0], buf, &len, &status);
+ char* demang = __cxxabiv1::__cxa_demangle(cases[i][0], buf, &len, &status);
if (demang == 0 || std::strcmp(demang, cases[i][1]) != 0)
{
std::cout << cases[i][0] << " -> " << cases[i][1] << '\n';