Commit c1c85b02 by Jonathan Dumaresq

Forget one std::FILE

parent 635a4fc3
......@@ -309,7 +309,7 @@ class input_adapter
{
public:
// native support
input_adapter(FILE* file)
input_adapter(std::FILE* file)
: ia(std::make_shared<file_input_adapter>(file)) {}
/// input adapter for input stream
input_adapter(std::istream& i)
......
......@@ -2358,7 +2358,7 @@ class input_adapter
{
public:
// native support
input_adapter(FILE* file)
input_adapter(std::FILE* file)
: ia(std::make_shared<file_input_adapter>(file)) {}
/// input adapter for input stream
input_adapter(std::istream& i)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment