diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-09 00:23:16 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-09 00:23:16 +0000 |
commit | bfea0319aa07ad2c921ba29ba216e921d65f2ed1 (patch) | |
tree | 8a61e8b5a1280445c94d1443205cc1d2a5a23736 /lib/persistence.cpp | |
parent | Fix test-persistence dependencies (diff) | |
download | ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.tar.bz2 ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.tar.xz ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.zip |
Integer support in persistence
Splits bool and arithmatic types, pass arithmatic values as string views from JSON and
parse according to the target type.
Diffstat (limited to 'lib/persistence.cpp')
-rw-r--r-- | lib/persistence.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/persistence.cpp b/lib/persistence.cpp index 38e2ac6..f6f0c17 100644 --- a/lib/persistence.cpp +++ b/lib/persistence.cpp @@ -103,9 +103,9 @@ namespace Persistence { } void - Selection::setValue(float) + Selection::setValue(std::string_view) { - throw std::runtime_error("Unexpected float"); + throw std::runtime_error("Unexpected numeric"); } void |