summaryrefslogtreecommitdiff
path: root/source/slang/syntax.h
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/slang/syntax.h
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/slang/syntax.h')
-rw-r--r--source/slang/syntax.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/slang/syntax.h b/source/slang/syntax.h
index 8d56cd28e..3cd46914f 100644
--- a/source/slang/syntax.h
+++ b/source/slang/syntax.h
@@ -11,7 +11,6 @@
namespace Slang
{
- using namespace CoreLib::Basic;
class SyntaxVisitor;
class FunctionSyntaxNode;
@@ -850,7 +849,7 @@ namespace Slang
{
BaseType = baseType;
}
- virtual CoreLib::Basic::String ToString() override;
+ virtual Slang::String ToString() override;
protected:
virtual BasicExpressionType* GetScalarType() override;
virtual bool EqualsImpl(ExpressionType * type) override;
@@ -1034,7 +1033,7 @@ namespace Slang
public:
RefPtr<ExpressionType> BaseType;
RefPtr<IntVal> ArrayLength;
- virtual CoreLib::Basic::String ToString() override;
+ virtual Slang::String ToString() override;
protected:
virtual bool EqualsImpl(ExpressionType * type) override;
virtual ExpressionType* CreateCanonicalType() override;