File: system.h

package info (click to toggle)
python-escript 5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 87,772 kB
  • ctags: 49,550
  • sloc: python: 585,488; cpp: 133,173; ansic: 18,675; xml: 3,283; sh: 690; makefile: 215
file content (32 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once

// for demangling the result of type_info.name()
// with msvc, type_info.name() is already demangled
#ifdef __GNUC__
#include <cxxabi.h>
#endif // __GNUC__

namespace unittest
{

#ifdef _CXXABI_H
inline const char* demangle(const char* name)
{
  char buf[1024];
  size_t size=1024;
  int status;
  char* res = abi::__cxa_demangle (name,
                               buf,
                               &size,
                               &status);
  return res;
}
#else
inline const char* demangle(const char* name)
{
  return name;
}
#endif

} // end unittest