|
|
|
|
|
by on_the_train
294 days ago
|
|
> There are plenty of linters and tools to detect issues like this (ex: clang-tidy can scan for unnecessary value params) Exactly, this is not an issue in any reasonable setup because static analysis catches (and fixes!) this reliably. > but evidently these issues go unnoticed until a customer complains about it or someone actually bothers to profile the code. No |
|
With Rust I have one job that runs tests and another that runs cargo build --release and I'm done...