From a24acdd2378f4cdb8c9e9202da4b076047814928 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Tue, 20 Sep 2011 15:53:34 +0100 Subject: Tweak some definitions to make clang happy. --- src/exception.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/exception.cc') diff --git a/src/exception.cc b/src/exception.cc index c9adcc6..6823e1c 100644 --- a/src/exception.cc +++ b/src/exception.cc @@ -272,7 +272,7 @@ static __cxa_thread_info *thread_info_fast() /** * ABI function returning the __cxa_eh_globals structure. */ -extern "C" __cxa_eh_globals *__cxa_get_globals(void) +extern "C" __cxa_eh_globals *ABI_NAMESPACE::__cxa_get_globals(void) { return &(thread_info()->globals); } @@ -280,7 +280,7 @@ extern "C" __cxa_eh_globals *__cxa_get_globals(void) * Version of __cxa_get_globals() assuming that __cxa_get_globals() has already * been called at least once by this thread. */ -extern "C" __cxa_eh_globals *__cxa_get_globals_fast(void) +extern "C" __cxa_eh_globals *ABI_NAMESPACE::__cxa_get_globals_fast(void) { return &(thread_info_fast()->globals); } -- cgit v1.2.3