diff options
Diffstat (limited to 'source/slang/mangle.h')
| -rw-r--r-- | source/slang/mangle.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/slang/mangle.h b/source/slang/mangle.h new file mode 100644 index 000000000..6eea96a19 --- /dev/null +++ b/source/slang/mangle.h @@ -0,0 +1,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
\ No newline at end of file |
