diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-03 11:59:36 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-03 11:59:36 +0200 |
commit | eb8530cc90ff12fa79ac24fd9703422a7e8c8415 (patch) | |
tree | 5ca467d7fc111c3e8978e032b3960a66fc1d4b64 | |
parent | e04b8afe7aef5db535311630834bc25316433dae (diff) |
fix sparc build
after my commit e7bc3cab019fbf040f9fb8b53ae2cf3f977d200b
"remove boilerplate in UNO Exception constructor calls"
Change-Id: Iccf79e3c41c860e15078b791fed551a9526aa453
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx b/bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx index 4cad13eb15f0..51ad964b9e46 100644 --- a/bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx @@ -257,7 +257,7 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp ) { throw RuntimeException( OUString("no rtti for type ") + - *reinterpret_cast< OUString const * >( &pUnoExc->pType->pTypeName ), + *reinterpret_cast< OUString const * >( &pUnoExc->pType->pTypeName ) ); } } |