exchange constexpr for const
By mistake c++11 was required after the pytest merge request. The reason was using constexpr
, which is a c++11 feature. This MR changes it to const
, which in this circumstance shouldn't affect the program at all.
Solves #5 (closed)
Edited by Nicolas Mounet