mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
Fixed braced-init error with older gcc
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
1.0.0-b39
|
1.0.0-b39
|
||||||
|
|
||||||
* Use beast::string_view alias
|
* Use beast::string_view alias
|
||||||
|
* Fixed braced-init error with older gcc
|
||||||
|
|
||||||
HTTP
|
HTTP
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ int main(int ac, char const* av[])
|
|||||||
po::store(po::parse_command_line(ac, av, desc), vm);
|
po::store(po::parse_command_line(ac, av, desc), vm);
|
||||||
po::notify(vm);
|
po::notify(vm);
|
||||||
|
|
||||||
dstream log{std::cerr};
|
dstream log(std::cerr);
|
||||||
std::unitbuf(log);
|
std::unitbuf(log);
|
||||||
|
|
||||||
if(vm.count("help"))
|
if(vm.count("help"))
|
||||||
|
Reference in New Issue
Block a user