From: Angus Leeming Date: Mon, 3 Sep 2001 16:20:47 +0000 (+0000) Subject: Added a using std::map directive. X-Git-Tag: 1.6.10~20679 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=829894058352e91ef972cfe3d450bffa0d91fc31;p=features.git Added a using std::map directive. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2667 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index cf59a573ba..a2ccdb77aa 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,7 @@ +2001-09-02 Angus Leeming + + * support.C: added a using std::map directive. + 2001-08-17 André Pönitz * math_hash.C: Use std::map instead of faking it diff --git a/src/mathed/support.C b/src/mathed/support.C index 94e2751a92..13824a39ab 100644 --- a/src/mathed/support.C +++ b/src/mathed/support.C @@ -11,6 +11,7 @@ #include "Painter.h" #include "debug.h" +using std::map; using std::endl; using std::max; @@ -518,7 +519,7 @@ named_deco_struct deco_table[] = { }; -std::map deco_list; +map deco_list; // sort the table on startup struct init_deco_table {