mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
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:
parent
ff13a3e736
commit
8298940583
@ -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
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user