The branch, 2.0.x, has been updated. - Log -----------------------------------------------------------------
commit 249fa322c443722c7bf2477a286c7835fa2a6895 Author: Juergen Spitzmueller <[email protected]> Date: Thu Oct 11 12:55:43 2012 +0200 Correctly initialize bool. Thanks, Pavel. (cherry picked from commit 47673f560f9af793f978482cef133b032fdb8692) diff --git a/src/LaTeX.cpp b/src/LaTeX.cpp index cd05156..dcb1cce 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 ? ----------------------------------------------------------------------- Summary of changes: src/LaTeX.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
