You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Bugfix:System] Don't use -ofast for compilation (#107)
### Please check if the PR fulfills these requirements:
* [ ] Tests for the changes have been added/updated (if possible)
* [ ] Documentation has been updated/added if relevant
### What is the current behavior?
<!-- List issue if it fixes/closes/implements one using the "Fixes
#<number>" or "Closes #<number>" syntax -->
When compiling, the `-ofast` flag is used even though it is not
standards compliant and higher versions of clang will report errors with
`json.hpp`.
### What is the new behavior?
The `-o3` flag is used instead to ensure runtime speed is still as fast
as possible without causing errors.
### Other information?
<!-- Is this a breaking change? -->
<!-- How did you test -->
0 commit comments