Fixed braced-init error with older gcc

This commit is contained in:
Vinnie Falco
2017-05-08 19:09:35 -07:00
parent 140bf5cb1d
commit 6eb5dc8b58
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
1.0.0-b39
* Use beast::string_view alias
* Fixed braced-init error with older gcc
HTTP

View File

@ -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"))