From 205187b561c3b31fa931e73e8f7263f0c4b1de41 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Thu, 15 Jun 2017 13:24:25 -0700 Subject: 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. --- source/slang/syntax.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/slang/syntax.h') 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 BaseType; RefPtr ArrayLength; - virtual CoreLib::Basic::String ToString() override; + virtual Slang::String ToString() override; protected: virtual bool EqualsImpl(ExpressionType * type) override; virtual ExpressionType* CreateCanonicalType() override; -- cgit v1.2.3