blob: 6eea96a1926d6417c2f66effb7668ae339f68097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SLANG_MANGLE_H_INCLUDED
#define SLANG_MANGLE_H_INCLUDED
// This file implements the name mangling scheme for the Slang language.
#include "../core/basic.h"
namespace Slang
{
struct Decl;
String getMangledName(Decl* decl);
}
#endif
|