We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a workaround for absence of if constexpr in C++14 in the form of static_if_impl. This workaround is now used here:
if constexpr
static_if_impl
restinio/dev/restinio/impl/response_coordinator.hpp
Line 98 in 1f95dbc
The static_if_impl has to be replaced with if constexpr because RESTinio is now C++17 library.
The text was updated successfully, but these errors were encountered:
A fix for #204.
c2913e9
eao197
No branches or pull requests
There is a workaround for absence of
if constexpr
in C++14 in the form ofstatic_if_impl
. This workaround is now used here:restinio/dev/restinio/impl/response_coordinator.hpp
Line 98 in 1f95dbc
The
static_if_impl
has to be replaced withif constexpr
because RESTinio is now C++17 library.The text was updated successfully, but these errors were encountered: