mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix non-ascii function parameters in LLVM IR
This commit is contained in:
+1
-1
@@ -432,7 +432,7 @@ typedef i32 b32; // NOTE(bill): Prefer this!!!
|
||||
|
||||
// NOTE(bill): Get true and false
|
||||
#if !defined(__cplusplus)
|
||||
#if (defined(_MSC_VER) && _MSC_VER <= 1800) || (!defined(_MSC_VER) && !defined(__STDC_VERSION__))
|
||||
#if (defined(_MSC_VER) && _MSC_VER < 1800) || (!defined(_MSC_VER) && !defined(__STDC_VERSION__))
|
||||
#ifndef true
|
||||
#define true (0 == 0)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user