From 87b2fc961428fc7e523420180e6d56ceb744d0ab Mon Sep 17 00:00:00 2001 From: John Turner <7strbass@gmail.com> Date: Fri, 10 May 2024 12:25:24 -0400 Subject: [PATCH] --add Configuration function to be able to store and retrieve vectors of data. A vector of a supported type of values can now be stored and retrieved in a Subconfiguration, where the key of each value from the vector will be a string representation of its index. Currently supports up to 1000 values in the vector. --- src/esp/core/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/esp/core/Configuration.h b/src/esp/core/Configuration.h index 3cb2482173..c0320591a3 100644 --- a/src/esp/core/Configuration.h +++ b/src/esp/core/Configuration.h @@ -1350,7 +1350,7 @@ class Configuration { } /** - * @brief Merges Configuration pointed to by @p config into this + * @brief Merges Configuration pointed to by @p src into this * Configuration, including all subconfigs. Passed config overwrites * existing data in this config. * @param src The source of Configuration data we wish to merge into this