Remove unused variable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15624 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-10-30 18:32:55 +00:00
parent 65354d63a7
commit 4d814f3e73

View File

@ -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]));