* src/tgbaalgos/emptiness_stats.hh (unsigned_statistics::stats_map_):
Use char_ptr_less_than.
This commit is contained in:
parent
117aaf6772
commit
081bdad5b4
2 changed files with 6 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
2005-02-04 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2005-02-04 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgbaalgos/emptiness_stats.hh (unsigned_statistics::stats_map_):
|
||||||
|
Use char_ptr_less_than.
|
||||||
|
|
||||||
* src/misc/ltstr.hh: New file.
|
* src/misc/ltstr.hh: New file.
|
||||||
* src/misc/Makefile.am (misc_HEADERS): Add it.
|
* src/misc/Makefile.am (misc_HEADERS): Add it.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include "misc/ltstr.hh"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
@ -50,7 +51,8 @@ namespace spot
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
typedef unsigned (unsigned_statistics::*unsigned_fun_)() const;
|
typedef unsigned (unsigned_statistics::*unsigned_fun_)() const;
|
||||||
typedef std::map<const char*, unsigned_fun_> stats_map_;
|
typedef std::map<const char*, unsigned_fun_,
|
||||||
|
char_ptr_less_than> stats_map_;
|
||||||
stats_map_ stats_;
|
stats_map_ stats_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue