summaryrefslogtreecommitdiffstats
path: root/source/slangc
diff options
context:
space:
mode:
authorTim Foley <tfoley@nvidia.com>2017-06-15 13:24:25 -0700
committerTim Foley <tfoley@nvidia.com>2017-06-15 13:24:25 -0700
commit205187b561c3b31fa931e73e8f7263f0c4b1de41 (patch)
tree7bd2cd5ae3c14416b71ef8319ff02ace429d1132 /source/slangc
parent517513645afb8eaf4841e7b7035f1ba3a9c7cd57 (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/slangc')
-rw-r--r--source/slangc/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/slangc/main.cpp b/source/slangc/main.cpp
index 39be1a1fd..ead286434 100644
--- a/source/slangc/main.cpp
+++ b/source/slangc/main.cpp
@@ -4,15 +4,14 @@
#include "core/slang-io.h"
+using namespace Slang;
+
#include <assert.h>
// Currently only used for looking up `Profile::` values that aren't
// exported by the public API
#include "../slang/profile.h"
-using namespace CoreLib::Basic;
-using namespace CoreLib::IO;
-
// Try to read an argument for a command-line option.
wchar_t const* tryReadCommandLineArgumentRaw(wchar_t const* option, wchar_t***ioCursor, wchar_t**end)
{