You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the issue you have?
Gcc 7.x complains about json.hpp row ~1581:
// assertion to check that the iterator range is indeed contiguous,
// see http://stackoverflow.com/a/35008842/266378 for more discussion
assert(std::accumulate(
first, last, std::pair<bool, int>(true, 0),
[&first](std::pair<bool, int> res, decltype(*first) val)
{
with error "lamda-expression in unevaluated context"
Please describe the steps to reproduce the issue. Can you provide a small but working code example?
just include header in hello world application built using gcc 7.3
What is the expected behavior?
And what is the actual behavior instead?
Which compiler and operating system are you using? Is it a supported compiler?
Did you use a released version of the library or the version from the develop branch?
looks to be the same on master
Bug Report
What is the issue you have?
Gcc 7.x complains about json.hpp row ~1581:
with error "lamda-expression in unevaluated context"
Please describe the steps to reproduce the issue. Can you provide a small but working code example?
just include header in hello world application built using gcc 7.3
What is the expected behavior?
And what is the actual behavior instead?
Which compiler and operating system are you using? Is it a supported compiler?
Did you use a released version of the library or the version from the
develop
branch?looks to be the same on master
If you experience a compilation error: can you compile and run the unit tests?
Feature Request
Describe the feature in as much detail as possible.
Include sample usage where appropriate.
The text was updated successfully, but these errors were encountered: