The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 47673f560f9af793f978482cef133b032fdb8692 Author: Juergen Spitzmueller <[email protected]> Date: Thu Oct 11 12:55:43 2012 +0200 Correctly initialize bool. Thanks, Pavel. diff --git a/src/LaTeX.cpp b/src/LaTeX.cpp index b024f77..c9d3247 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
