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

This commit is contained in:
Gary Talent 2019-03-30 17:11:41 -05:00
parent 5b57f4279a
commit 5dbe160633

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 {