Skip to content
Snippets Groups Projects
Commit da3a83f5 authored by Oliver Sander's avatar Oliver Sander
Browse files

fixes for clang. Patch by Elias Pipping (FS 944)

[[Imported from SVN: r6516]]
parent 059d491a
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
#include <string>
#include <typeinfo>
#ifdef __GNUC__
#if defined(__GNUC__) && ! defined(__clang__)
#include <cxxabi.h>
#endif // #ifdef __GNUC__
......@@ -23,7 +23,7 @@ namespace Dune {
std::string className ( T &t )
{
std::string className = typeid( t ).name();
#ifdef __GNUC__
#if defined(__GNUC__) && ! defined(__clang__)
int status;
char *demangled = abi::__cxa_demangle( className.c_str(), 0, 0, &status );
if( demangled )
......@@ -40,7 +40,7 @@ namespace Dune {
std::string className ()
{
std::string className = typeid( T ).name();
#ifdef __GNUC__
#if defined(__GNUC__) && ! defined(__clang__)
int status;
char *demangled = abi::__cxa_demangle( className.c_str(), 0, 0, &status );
if( demangled )
......
......@@ -5,7 +5,7 @@
#endif
#include <dune/common/bitsetvector.hh>
#ifdef __GNUC__
#if defined(__GNUC__) && ! defined(__clang__)
#include <ext/malloc_allocator.h>
#endif
......@@ -180,7 +180,7 @@ void doTest() {
int main()
{
doTest<4, std::allocator<bool> >();
#ifdef __GNUC__
#if defined(__GNUC__) && ! defined(__clang__)
doTest<4, __gnu_cxx::malloc_allocator<bool> >();
#endif
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment