Skip to content

Commit

Permalink
Only use GNU cxxabi demangler for debug printing
Browse files Browse the repository at this point in the history
Unfortunately, the cxxabi demanlger utility causes an error in
the serialization code. Until that is resolved (see also issue #811)
use the normal typeid string for serialization and cxxabi
for debug printing.
  • Loading branch information
biddisco committed Oct 10, 2018
1 parent e7f4f5e commit 3ba439a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hpx/util/debug/demangle_helper.hpp
Expand Up @@ -11,7 +11,7 @@
#include <string>
#include <type_traits>

#if defined(__GNUC__)
#if 0 && defined(__GNUC__)
#include <cxxabi.h>
#include <stdlib.h>

Expand Down

0 comments on commit 3ba439a

Please sign in to comment.