Fixed an erroneous use of operator>> in textual.cc
This commit is contained in:
parent
7cd37b1d50
commit
0ac2dc2810
1 changed files with 1 additions and 1 deletions
|
|
@ -628,7 +628,7 @@ void instance_t::include_directive(char * line)
|
||||||
|
|
||||||
if (! exists(filename))
|
if (! exists(filename))
|
||||||
throw_(std::runtime_error,
|
throw_(std::runtime_error,
|
||||||
_("File to include was not found: '%1'" << filename));
|
_("File to include was not found: '%1'") << filename);
|
||||||
|
|
||||||
ifstream stream(filename);
|
ifstream stream(filename);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue