From: Juergen Spitzmueller Date: Thu, 11 Oct 2012 10:55:43 +0000 (+0200) Subject: Correctly initialize bool. Thanks, Pavel. X-Git-Tag: 2.1.0beta1~1408 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=47673f560f9af793f978482cef133b032fdb8692;p=lyx.git Correctly initialize bool. Thanks, Pavel. --- diff --git a/src/LaTeX.cpp b/src/LaTeX.cpp index b024f774f4..c9d32478d1 100644 --- a/src/LaTeX.cpp +++ b/src/LaTeX.cpp @@ -94,7 +94,7 @@ bool operator!=(AuxInfo const & a, AuxInfo const & o) LaTeX::LaTeX(string const & latex, OutputParams const & rp, FileName const & f, string const & p) - : cmd(latex), file(f), path(p), runparams(rp) + : cmd(latex), file(f), path(p), runparams(rp), biber(false) { num_errors = 0; if (prefixIs(cmd, "pdf")) { // Do we use pdflatex ?