ChimeraTK / ControlSystemAdapter

An adapter layer which allows to use control applications with different control system software environments.
GNU Lesser General Public License v3.0
3 stars 2 forks source link

Use fixed-size integer types as template parameters #58

Closed smarsching closed 2 years ago

smarsching commented 2 years ago

The supported user-types are specified in form of the fixed-size integer types, so using variable size integer types as template parameters causes problems with some compilers. Even when using compilers that accept this kind of usage, it is sloppy because behavior will depend on the target platform.

This fixes #57.