From 1f18764d976151f19322c85c55ddc23c74accca9 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Tue, 26 Feb 2008 08:31:00 +0000 Subject: [PATCH] Fix warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23242 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetCommandParams.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/insets/InsetCommandParams.cpp b/src/insets/InsetCommandParams.cpp index fe48fe9d90..10926c79fc 100644 --- a/src/insets/InsetCommandParams.cpp +++ b/src/insets/InsetCommandParams.cpp @@ -471,7 +471,6 @@ docstring const & InsetCommandParams::operator[](string const & name) const docstring & InsetCommandParams::operator[](string const & name) { BOOST_ASSERT(info_.hasParam(name)); - ParamInfo::ParamData const & pd = info_[name]; return params_[name]; }