Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compiler warnings in example projects (#506)
### Motivation A recent example project was added that had a compiler warning which wasn't caught by CI. We can have our example code free of warnings and ensure they remain so by compiling them with `-warnings-as-errors` in CI. On further investigation, we cannot enable `-warnings-as-errors` in the examples Ci pipeline because we're reusing the shared build/cache directories which produces its own warnings for left over unused modules. ### Modifications - Fix compiler warnings in example. - ~Build with `-warnings-as-errors` in examples CI pipeline.~ ### Result Example projects compile without warnings. ### Test Plan ~CI updated.~
- Loading branch information