C++: Whitespace fix.

This commit is contained in:
Martin Ling 2014-09-06 17:28:27 +01:00 committed by Uwe Hermann
parent cac58676e9
commit d4cf45e516
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ shared_ptr<Input> Context::open_file(string filename)
{ {
const struct sr_input *input; const struct sr_input *input;
check( sr_input_scan_file(filename.c_str(), &input)); check(sr_input_scan_file(filename.c_str(), &input));
return shared_ptr<Input>( return shared_ptr<Input>(
new Input(shared_from_this(), input), Input::Deleter()); new Input(shared_from_this(), input), Input::Deleter());
} }