From bdf731b2dbaa562ca05e0a103654ccba73fdb8f6 Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Tue, 16 May 2023 14:20:09 -0400 Subject: [PATCH] Remove Plat_IsInDebugSessionRaw. No longer exists --- public/tier0/platform.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/public/tier0/platform.h b/public/tier0/platform.h index 3fd0782f..3b52e737 100644 --- a/public/tier0/platform.h +++ b/public/tier0/platform.h @@ -703,11 +703,7 @@ typedef unsigned int uint; // Returns true if debugger attached, false otherwise //----------------------------------------------------------------------------- #if defined( PLATFORM_WINDOWS ) || defined( PLATFORM_LINUX ) || defined( PLATFORM_OSX ) -PLATFORM_INTERFACE bool Plat_IsInDebugSessionRaw(); -inline bool Plat_IsInDebugSession() -{ - return Plat_IsInDebugSessionRaw(); -} +PLATFORM_INTERFACE bool Plat_IsInDebugSession(); PLATFORM_INTERFACE void Plat_DebugString( const tchar * ); #else inline bool Plat_IsInDebugSession() { return false; }