File: system.h

package info (click to toggle)
python-escript 5.6-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144,304 kB
  • sloc: python: 592,074; cpp: 136,909; ansic: 18,675; javascript: 9,411; xml: 3,384; sh: 738; makefile: 207
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