Fix non-ascii function parameters in LLVM IR

This commit is contained in:
Ginger Bill
2017-04-15 23:14:14 +01:00
parent 23a0a6de4b
commit 169310a9f6
3 changed files with 4 additions and 132 deletions
+1 -1
View File
@@ -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