diff options
| author | Tim Foley <tfoley@nvidia.com> | 2017-06-15 13:24:25 -0700 |
|---|---|---|
| committer | Tim Foley <tfoley@nvidia.com> | 2017-06-15 13:24:25 -0700 |
| commit | 205187b561c3b31fa931e73e8f7263f0c4b1de41 (patch) | |
| tree | 7bd2cd5ae3c14416b71ef8319ff02ace429d1132 /source/slang/slang-stdlib.h | |
| parent | 517513645afb8eaf4841e7b7035f1ba3a9c7cd57 (diff) | |
Rename `CoreLib::*` to `Slang`
Getting rid of more namespace complexity and stripping things down to the basics.
This also gets rid of some dead code in the "core" library.
Diffstat (limited to 'source/slang/slang-stdlib.h')
| -rw-r--r-- | source/slang/slang-stdlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/slang-stdlib.h b/source/slang/slang-stdlib.h index fd41565d1..e4ee8cee3 100644 --- a/source/slang/slang-stdlib.h +++ b/source/slang/slang-stdlib.h @@ -8,13 +8,13 @@ namespace Slang class SlangStdLib { private: - static CoreLib::String code; + static String code; public: - static CoreLib::String GetCode(); + static String GetCode(); static void Finalize(); }; - CoreLib::String getGLSLLibraryCode(); + String getGLSLLibraryCode(); } #endif
\ No newline at end of file |
