summaryrefslogtreecommitdiffhomepage
path: root/Opcode/Ice
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-10-02 00:14:14 +0200
committerAki <please@ignore.pl>2021-10-02 00:14:14 +0200
commit83073c9522536c32117234c573960b64a9bf13f8 (patch)
treef561cc57746698c35d262c1354602b11350823f6 /Opcode/Ice
parent2ea4e2afa4c3e050979acf9c8e173a1dd99ba00c (diff)
downloadstarshatter-83073c9522536c32117234c573960b64a9bf13f8.zip
starshatter-83073c9522536c32117234c573960b64a9bf13f8.tar.gz
starshatter-83073c9522536c32117234c573960b64a9bf13f8.tar.bz2
Removed usage of msvc __noop extension
Diffstat (limited to 'Opcode/Ice')
-rw-r--r--Opcode/Ice/IceMemoryMacros.h2
1 files changed, 1 insertions, 1 deletions
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