Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
479c4833
Commit
479c4833
authored
Feb 04, 2005
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/emptiness_stats.hh (unsigned_statistics::stats_map_):
Use char* for keys, not std::string.
parent
9c2c3926
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
479c4833
2005-02-04 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/emptiness_stats.hh (unsigned_statistics::stats_map_):
Use char* for keys, not std::string.
2005-02-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
* tgbaalgos/emptiness_stats.hh (unsigned_statistics): New base
...
...
src/tgbaalgos/emptiness_stats.hh
View file @
479c4833
...
...
@@ -24,7 +24,6 @@
#include <cassert>
#include <map>
#include <string>
namespace
spot
{
...
...
@@ -51,7 +50,7 @@ namespace spot
protected:
typedef
unsigned
(
unsigned_statistics
::*
unsigned_fun_
)()
const
;
typedef
std
::
map
<
std
::
string
,
unsigned_fun_
>
stats_map_
;
typedef
std
::
map
<
const
char
*
,
unsigned_fun_
>
stats_map_
;
stats_map_
stats_
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment