mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-26 11:08:51 +02:00
The fallback implementation was added for GCC 4.x as that didn't yet implement std::is_trivially_copyable. However, by now we're using C++17 as our language standard and that wasn't even implemented in GCC 4.x yet[^1]: Some C++17 features are available since GCC 5, but support was experimental and the ABI of C++17 features was not stable until GCC 9. Hence, this became more or less dead code and can be removed. [^1]: https://gcc.gnu.org/projects/cxx-status.html#cxx17