[ox/std] Uglify OxError parameter name to prevent name conflicts

(synced from 5dbe160633)
This commit is contained in:
2019-03-30 17:11:41 -05:00
parent f282cd3a72
commit d4f246d368
+1 -1
View File
@@ -16,7 +16,7 @@
#define OxError(x) x
#endif
#define oxReturnError(x) if (const auto err = x) return err
#define oxReturnError(x) if (const auto _err = x) return _err
namespace ox {