Added a using std::map directive.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2667 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-09-03 16:20:47 +00:00
parent ff13a3e736
commit 8298940583
2 changed files with 6 additions and 1 deletions

View 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

View 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 {