mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
fix uninitialized variable
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20412 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9e879d112b
commit
a9ff81ed29
@ -610,7 +610,7 @@ int LaTeX::scanLogFile(TeXErrors & terr)
|
||||
LYXERR(Debug::LATEX) << "Log file: " << tmp << endl;
|
||||
FileName const fn = FileName(makeAbsPath(tmp));
|
||||
ifstream ifs(fn.toFilesystemEncoding().c_str());
|
||||
bool fle_style;
|
||||
bool fle_style = false;
|
||||
static regex file_line_error(".+\\.\\D+:[0-9]+: (.+)");
|
||||
|
||||
string token;
|
||||
|
Loading…
Reference in New Issue
Block a user