From: Peter Kümmel Date: Mon, 24 May 2010 15:21:17 +0000 (+0000) Subject: remove explicit boost::ref call X-Git-Tag: 2.0.0~3224 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=07d0ccfdc76030578d76a3e8d3e6a8653f3df636;p=features.git remove explicit boost::ref call git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34489 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 9f8a9336d0..96a990e32d 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -1657,7 +1657,7 @@ void Buffer::validate(LaTeXFeatures & features) const updateMacros(); for_each(paragraphs().begin(), paragraphs().end(), - bind(&Paragraph::validate, _1, boost::ref(features))); + bind(&Paragraph::validate, _1, ref(features))); if (lyxerr.debugging(Debug::LATEX)) { features.showStruct();