* 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
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include <cassert>
|
||||
#include <map>
|
||||
#include "misc/ltstr.hh"
|
||||
|
||||
namespace spot
|
||||
{
|
||||
|
|
@ -50,7 +51,8 @@ namespace spot
|
|||
|
||||
protected:
|
||||
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_;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue