]> git.lyx.org Git - features.git/commitdiff
Added a using std::map directive.
authorAngus Leeming <leeming@lyx.org>
Mon, 3 Sep 2001 16:20:47 +0000 (16:20 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 3 Sep 2001 16:20:47 +0000 (16:20 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2667 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/support.C

index cf59a573ba9a74682a6054c99dcdce8d01a31023..a2ccdb77aa806d82e3c9ec8e7ab1d0e249350683 100644 (file)
@@ -1,3 +1,7 @@
+2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * support.C: added a using std::map directive.
+
 2001-08-17  André Pönitz  <poenitz@gmx.net>
 
        * math_hash.C: Use std::map instead of faking it
index 94e2751a9207e90fd61fb803d04bdb276365d1a1..13824a39abc5c8f3fd237233b36df4d9f7db281f 100644 (file)
@@ -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<string, deco_struct> deco_list;
+map<string, deco_struct> deco_list;
 
 // sort the table on startup
 struct init_deco_table {