From: Angus Leeming Date: Thu, 28 Feb 2002 19:44:31 +0000 (+0000) Subject: Add a missing #include for sscanf. X-Git-Tag: 1.6.10~19779 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=23a28bf25bfc65ea5b8d46f3520c56c1e5daa8a5;p=features.git Add a missing #include for sscanf. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3617 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 436ec3229c..504b915c1d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -14,6 +14,8 @@ * text.C: * text2.C: remove #include "lyx_gui_misc.h". + * LaTeX.C: added #include + 2002-02-28 Jean-Marc Lasgouttes * paragraph.C (getMaxDepthAfter): new method. The maximal depth diff --git a/src/LaTeX.C b/src/LaTeX.C index a23e60b860..054a7796a1 100644 --- a/src/LaTeX.C +++ b/src/LaTeX.C @@ -32,6 +32,7 @@ #include "support/systemcall.h" #include "support/os.h" #include "support/path.h" +#include // sscanf using std::ifstream; using std::getline;