boostorg / wave

Boost.org wave module
http://boost.org/libs/wave
21 stars 49 forks source link

Unguarded unconditional use of constexpr #153

Closed Flamefire closed 2 years ago

Flamefire commented 2 years ago

As noted on the ML Wave does no longer compile on VS 2013 due to missing constexpr support.

This is required since https://github.com/boostorg/wave/commit/1db25211a4ba1ebec30f2bec0e1cd04c8bd30174 by @jefftrull

Solution: Add cxx11_constexpr to the requirements at https://github.com/boostorg/wave/blob/develop/build/Jamfile.v2#L15 or use BOOST_CONSTEXPR on those functions

jefftrull commented 2 years ago

Thanks for your help!