fix whitespace post 2f8d08c36
This commit is contained in:
parent
2f8d08c366
commit
9d002ee620
1 changed files with 4 additions and 4 deletions
|
@ -135,13 +135,13 @@ public:
|
||||||
xmlError * error = xmlCtxtGetLastError( ctx_ );
|
xmlError * error = xmlCtxtGetLastError( ctx_ );
|
||||||
std::ostringstream os;
|
std::ostringstream os;
|
||||||
os << "XML document not well formed";
|
os << "XML document not well formed";
|
||||||
int line=0;
|
int line=0;
|
||||||
std::string file;
|
std::string file;
|
||||||
if (error)
|
if (error)
|
||||||
{
|
{
|
||||||
os << ": " << std::endl << error->message;
|
os << ": " << std::endl << error->message;
|
||||||
line = error->line;
|
line = error->line;
|
||||||
file = error->file;
|
file = error->file;
|
||||||
}
|
}
|
||||||
throw config_error(os.str(), line, file);
|
throw config_error(os.str(), line, file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue