google / astc-codec

A software ASTC decoder implementation which supports the ASTC LDR profile
Apache License 2.0
69 stars 30 forks source link

Use C++11-compatible assertions in constexpr functions #8

Closed bbarenblat closed 5 years ago

bbarenblat commented 5 years ago

C++11 restricts the bodies of constexpr functions more aggressively than C++14 or later. Introduce and use a C++11-compatible macro for assertions in constexpr functions.

jwmcglynn commented 5 years ago

Looks good, thanks!