Commit 93c742b
authored
[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 -->1 parent a6d9377 commit 93c742b
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
0 commit comments