We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e05b5fd commit 3aa8acaCopy full SHA for 3aa8aca
src/xrCore/Platform.h
@@ -22,16 +22,14 @@
22
// inline control - redefine to use compiler's heuristics ONLY
23
// it seems "IC" is misused in many places which cause code-bloat
24
// ...and VC7.1 really don't miss opportunities for inline :)
25
-#ifdef _EDITOR
26
-# define __forceinline inline
27
-#endif
28
#define _inline inline
29
#define __inline inline
30
#define IC inline
31
-#define ICF __forceinline // !!! this should be used only in critical places found by PROFILER
32
#ifdef _EDITOR
+# define ICF inline
33
# define ICN
34
#else
+# define ICF __forceinline // !!! this should be used only in critical places found by PROFILER
35
# define ICN __declspec (noinline)
36
#endif
37
0 commit comments