Language
C++
Compiler
clang 7.0.0
Options
Warnings
Boost 1.68.0
C++2a(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.68.0/clang-7.0.0/include -std=gnu++2a
i = 4
i = 5
i = 6
size = 3
val = 4
Exit Code:
0
Author
anonymous
over 6 years ago
C++
clang 7.0.0
Author
anonymous
over 6 years ago
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.68.0/clang-7.0.0/include -std=gnu++2a
prog.cc:74:8: warning: unused variable 'success' [-Wunused-variable]
bool success = qi::phrase_parse(begin, end, parser, qi::space, result);
^
1 warning generated.
i = 4
i = 5
i = 6
size = 3
val = 4