Skip to content

Commit 6170087

Browse files
fix: restore original parselist_double doc comment
1 parent 4754aee commit 6170087

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

concore_base.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ inline std::vector<std::string> parselist(const std::string& str) {
8181
return result;
8282
}
8383

84+
/**
85+
* Parses a double-valued list like "[0.0, 1.5, 2.3]" into a vector<double>.
86+
* Used by concore.hpp's read/write which work with numeric data.
87+
*/
8488
inline std::vector<double> parselist_double(const std::string& str);
8589

8690
enum class ConcoreValueType { NUMBER, BOOL, STRING, ARRAY };

0 commit comments

Comments
 (0)