mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 04:15:36 +00:00
start cleaning up ConsoleValueRef's
This commit is contained in:
parent
35500a87c6
commit
5e81c021f5
8 changed files with 331 additions and 233 deletions
|
|
@ -102,8 +102,17 @@ typedef unsigned _int64 U64;
|
|||
|
||||
// disable warning caused by memory layer
|
||||
// see msdn.microsoft.com "Compiler Warning (level 1) C4291" for more details
|
||||
#pragma warning(disable: 4291)
|
||||
#pragma warning(disable: 4291)
|
||||
|
||||
#define TORQUE_FORCEINLINE __forceinline
|
||||
|
||||
#if __cplusplus >= 201703L
|
||||
#define TORQUE_CASE_FALLTHROUGH [[fallthrough]];
|
||||
#define TORQUE_UNLIKELY [[unlikely]]
|
||||
#else
|
||||
#define TORQUE_CASE_FALLTHROUGH __fallthrough
|
||||
#define TORQUE_UNLIKELY
|
||||
#endif
|
||||
|
||||
#endif // INCLUDED_TYPES_VISUALC_H
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue