From 03de737f0d18526b99b59a1810c7e290b66f4be2 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Thu, 6 Jul 2017 11:11:01 -0700 Subject: Fix many warnings-as-errors issues. The code should now compile cleanly with warnings as errors for VS2015 with `W3`. Most of the changes had to do with propagating a real pointer-sized integer type through code that had been using `int`. --- source/core/slang-io.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/core/slang-io.cpp') diff --git a/source/core/slang-io.cpp b/source/core/slang-io.cpp index 684fed0a1..24d5aa412 100644 --- a/source/core/slang-io.cpp +++ b/source/core/slang-io.cpp @@ -23,7 +23,7 @@ namespace Slang String Path::TruncateExt(const String & path) { - int dotPos = path.LastIndexOf('.'); + UInt dotPos = path.LastIndexOf('.'); if (dotPos != -1) return path.SubString(0, dotPos); else @@ -32,7 +32,7 @@ namespace Slang String Path::ReplaceExt(const String & path, const char * newExt) { StringBuilder sb(path.Length()+10); - int dotPos = path.LastIndexOf('.'); + UInt dotPos = path.LastIndexOf('.'); if (dotPos == -1) dotPos = path.Length(); sb.Append(path.Buffer(), dotPos); @@ -72,7 +72,7 @@ namespace Slang String Path::GetFileNameWithoutEXT(const String & path) { String fileName = GetFileName(path); - int dotPos = fileName.LastIndexOf('.'); + UInt dotPos = fileName.LastIndexOf('.'); if (dotPos == -1) return fileName; return fileName.SubString(0, dotPos); -- cgit v1.2.3