foonathan / type_safe

Zero overhead utilities for preventing bugs at compile time
https://type_safe.foonathan.net
MIT License
1.54k stars 122 forks source link

replaced is_pod in test project #132

Closed marco-langer closed 2 years ago

marco-langer commented 2 years ago

Replaced is_pod in test/boolean.cpp with is_standard_layout and is_trivially_copyable.

The same static asserts are already in test/integer.cpp and test/floating_point.cpp, now it is consistent across all files.

foonathan commented 2 years ago

Thanks!