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/core/slang-math.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'source/core/slang-math.cpp') diff --git a/source/core/slang-math.cpp b/source/core/slang-math.cpp index a57b0dac2..76be23f30 100644 --- a/source/core/slang-math.cpp +++ b/source/core/slang-math.cpp @@ -1,9 +1,8 @@ #include "slang-math.h" -namespace CoreLib +#if 0 +namespace Slang { - namespace Basic - { - const float Math::Pi = 3.141592654f; - } -} \ No newline at end of file + const float Math::Pi = 3.141592654f; +} +#endif -- cgit v1.2.3