diff --git a/types/f14_fast_map.toml b/types/f14_fast_map.toml index d2564c3..bf0d65b 100644 --- a/types/f14_fast_map.toml +++ b/types/f14_fast_map.toml @@ -71,6 +71,9 @@ struct TypeHandler> { """ traversal_func = """ +// TODO: This implementation enables the traversal of the container, +// but doesn't report the memory footprint accurately. +// Revisit this implementation and fix memory footprint reporting. auto tail = returnArg .write((uintptr_t)&container) .write(container.size()); diff --git a/types/f14_node_map.toml b/types/f14_node_map.toml index 5643593..ef11936 100644 --- a/types/f14_node_map.toml +++ b/types/f14_node_map.toml @@ -71,6 +71,9 @@ struct TypeHandler> { """ traversal_func = """ +// TODO: This implementation enables the traversal of the container, +// but doesn't report the memory footprint accurately. +// Revisit this implementation and fix memory footprint reporting. auto tail = returnArg .write((uintptr_t)&container) .write(container.size()); diff --git a/types/f14_vector_map.toml b/types/f14_vector_map.toml index fa946ab..a07bd62 100644 --- a/types/f14_vector_map.toml +++ b/types/f14_vector_map.toml @@ -71,6 +71,9 @@ struct TypeHandler> { """ traversal_func = """ +// TODO: This implementation enables the traversal of the container, +// but doesn't report the memory footprint accurately. +// Revisit this implementation and fix memory footprint reporting. auto tail = returnArg .write((uintptr_t)&container) .write(container.size());