mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Fix puzzling warning.
This commit is contained in:
parent
176eee2420
commit
6c407a9571
@ -416,10 +416,11 @@ int LaTeX::run(TeXErrors & terr)
|
||||
}
|
||||
|
||||
// I am not pretty sure if need this twice.
|
||||
// MSVC complains that bool |= int is unsafe. Not sure why.
|
||||
if (head.haschanged(nlofile))
|
||||
rerun |= runMakeIndexNomencl(file, ".nlo", ".nls");
|
||||
rerun |= (runMakeIndexNomencl(file, ".nlo", ".nls") != 0);
|
||||
if (head.haschanged(glofile))
|
||||
rerun |= runMakeIndexNomencl(file, ".glo", ".gls");
|
||||
rerun |= (runMakeIndexNomencl(file, ".glo", ".gls") != 0);
|
||||
|
||||
// 5
|
||||
// we will only run latex more if the log file asks for it.
|
||||
|
Loading…
Reference in New Issue
Block a user