From 83073c9522536c32117234c573960b64a9bf13f8 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 Oct 2021 00:14:14 +0200 Subject: Removed usage of msvc __noop extension --- Opcode/Ice/IceMemoryMacros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Opcode/Ice/IceMemoryMacros.h') diff --git a/Opcode/Ice/IceMemoryMacros.h b/Opcode/Ice/IceMemoryMacros.h index 53bce50..346345b 100644 --- a/Opcode/Ice/IceMemoryMacros.h +++ b/Opcode/Ice/IceMemoryMacros.h @@ -78,7 +78,7 @@ #define SAFE_DESTRUCT(x) if (x) { (x)->SelfDestruct(); (x) = null; } //!< Safe ICE-style release #ifdef __ICEERROR_H__ - #define CHECKALLOC(x) if(!x) return SetIceError("Out of memory.", EC_OUT_OF_MEMORY); //!< Standard alloc checking. HANDLE WITH CARE. + #define CHECKALLOC(x) if(!x) return SetIceError;; // ("Out of memory.", EC_OUT_OF_MEMORY); //!< Standard alloc checking. HANDLE WITH CARE. #else #define CHECKALLOC(x) if(!x) return false; #endif -- cgit v1.1