svf-lib 1.0.1785 → 1.0.1786
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
#ifndef SVF_SVFSTAT_H
|
|
31
31
|
#define SVF_SVFSTAT_H
|
|
32
32
|
|
|
33
|
+
#include <string>
|
|
34
|
+
|
|
33
35
|
namespace SVF
|
|
34
36
|
{
|
|
35
37
|
|
|
@@ -41,9 +43,9 @@ class SVFStat
|
|
|
41
43
|
{
|
|
42
44
|
public:
|
|
43
45
|
|
|
44
|
-
typedef OrderedMap<
|
|
46
|
+
typedef OrderedMap<std::string, u32_t> NUMStatMap;
|
|
45
47
|
|
|
46
|
-
typedef OrderedMap<
|
|
48
|
+
typedef OrderedMap<std::string, double> TIMEStatMap;
|
|
47
49
|
|
|
48
50
|
enum ClockType
|
|
49
51
|
{
|