summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchenzizhan <[email protected]>2024-10-17 15:43:12 +0800
committerchenzizhan <[email protected]>2024-10-17 15:43:12 +0800
commit328afefa85448339bfecc3ad5b429957eb12566c (patch)
treec3b9f998a3fc5a4975966367f126108c8a83aedd /include
parent06153e396729e3091db544ce1217b5f737d2cd0b (diff)
Revert "uuid type field(dimension)"
This reverts commit 2d9b9cda59297fa80889c875b909881d25709045.
Diffstat (limited to 'include')
-rw-r--r--include/fieldstat/fieldstat.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/fieldstat/fieldstat.h b/include/fieldstat/fieldstat.h
index f177ffb..28eb03c 100644
--- a/include/fieldstat/fieldstat.h
+++ b/include/fieldstat/fieldstat.h
@@ -7,7 +7,6 @@ extern "C"
#include <stddef.h>
#include <stdbool.h>
-#include <uuid/uuid.h>
#define FS_OK 0
#define FS_ERR_TOO_MANY_CELLS -1
@@ -37,7 +36,6 @@ enum field_type
FIELD_VALUE_INTEGER,
FIELD_VALUE_DOUBLE,
FIELD_VALUE_CSTRING,
- FIELD_VALUE_UUID,
};
enum sampling_mode {
@@ -53,7 +51,6 @@ struct field {
long long value_longlong;
double value_double;
const char *value_str;
- uuid_t value_uuid;
};
};