Ethan Chapman
Results
1
comments of
Ethan Chapman
I had the same issue, was able to solve it by adding `noexcept` to [line 239](https://github.com/linghu8812/tensorrt_inference/blob/master/includes/common/logging.h#L239) in `includes/common/logging.h` ```cpp void log(Severity severity, const char* msg) override ``` Add `noexcept` ```cpp...