[ox/std] Fix oxReturnError to not re-originate the Error

This commit is contained in:
Gary Talent 2018-08-18 23:57:59 -05:00
parent a1b8de0cb0
commit f12de38211

View File

@ -16,7 +16,7 @@
#define OxError(x) x
#endif
#define oxReturnError(x) if (const auto err = x) return OxError(err)
#define oxReturnError(x) if (const auto err = x) return err
namespace ox {