From 14fa8763943a264dd535acef0bcc6ba2ca36863d Mon Sep 17 00:00:00 2001 From: VeithMetro Date: Fri, 17 Jan 2025 12:20:36 +0100 Subject: [PATCH] Retrigger the actions after changes to solution file --- Source/core/Trace.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/core/Trace.cpp b/Source/core/Trace.cpp index 463a20523..195cce422 100644 --- a/Source/core/Trace.cpp +++ b/Source/core/Trace.cpp @@ -37,12 +37,10 @@ namespace Core { if (index > 0) { do { index--; - found = ((fileName[index] == '\\') || (fileName[index] == '/')); } while ((found == false) && (index != 0)); } - return (found == false ? fileName : &fileName[index + 1]); }