From 4ecd231549027fce69f6134374fec3cd03fdca29 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Tue, 22 Jul 2008 16:09:18 +0000 Subject: [PATCH] fix MSVC warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25804 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetListings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetListings.cpp b/src/insets/InsetListings.cpp index 93eaf0090c..93b1931f53 100644 --- a/src/insets/InsetListings.cpp +++ b/src/insets/InsetListings.cpp @@ -185,7 +185,7 @@ int InsetListings::latex(odocstream & os, OutputParams const & runparams) const code += "'>"; } else uncodable += c; - } catch (EncodingException & e) { + } catch (EncodingException & /* e */) { if (runparams.dryrun) { code += "<" + _("LyX Warning: ") + _("uncodable character") + " '"; -- 2.39.2