commit | 4cad5a35545f7f37e5d68a34bff18e0f6729bfd1 | [log] [tgz] |
---|---|---|
author | Chisoon Jeong <chisoon.jeong@lge.com> | Thu May 02 16:16:19 2024 +0900 |
committer | Chisoon Jeong <chisoon.jeong@lge.com> | Thu May 02 07:21:32 2024 +0000 |
tree | 5f7475c63f77eb34329dcf3ba4d3e125fa73202b | |
parent | 583bc03f543ae929b77725a90f80005de57037ee [diff] |
Fix compilation with GCC on size_t wihtout #include <cstddef> Change-Id: I78afc46e1b931a9faf6efc6592abdc6a14a2218b
diff --git a/src/tracing/core/id_allocator.h b/src/tracing/core/id_allocator.h index 90df970..97c9981 100644 --- a/src/tracing/core/id_allocator.h +++ b/src/tracing/core/id_allocator.h
@@ -19,6 +19,7 @@ #include <stdint.h> +#include <cstddef> #include <type_traits> #include <vector>