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