zeroc-ice / ice-demos

Sample programs for Ice
https://zeroc.com
GNU General Public License v2.0
323 stars 217 forks source link

Fix issues reported by clang-tidy #178

Closed pepone closed 1 year ago

pepone commented 1 year ago

This PR updates C++11 demos, to fix warnings reported by clang-tidy, the majority are about const correctness, for places where we forget to declare a variable const. There are a few other things like std::move usage and some other minor issues.

see also #146