From: Georg Baum Date: Mon, 30 Oct 2006 18:32:55 +0000 (+0000) Subject: Remove unused variable X-Git-Tag: 1.6.10~12130 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4d814f3e737aa2fc557c9fbb68eb1289a90f5668;p=lyx.git Remove unused variable git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15624 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/docstring.C b/src/support/docstring.C index 3930146bc0..7d41f2cabb 100644 --- a/src/support/docstring.C +++ b/src/support/docstring.C @@ -66,7 +66,6 @@ void utf8_to_ucs4(std::string const & utf8, docstring & ucs4) return; int maxoutsize = n * 4; - int cd = -1; // basic_string::data() is not recognized by some old gcc version // so we use &(ucs4[0]) instead. char * outbuf = (char *)(&(ucs4[0]));