diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-05-01 17:28:44 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-07 16:41:37 +0000 |
commit | fc8c9a6c7bec176299915c6adab120e1bf2ea4e9 (patch) | |
tree | 837426e53f3ec0cd06a6b7c9244c57a7c4229953 /lib/persistence.cpp | |
parent | Fix the fact I've been spelling persistence wrong this whole time (diff) | |
download | ilt-fc8c9a6c7bec176299915c6adab120e1bf2ea4e9.tar.bz2 ilt-fc8c9a6c7bec176299915c6adab120e1bf2ea4e9.tar.xz ilt-fc8c9a6c7bec176299915c6adab120e1bf2ea4e9.zip |
Lots of test cases, few minor fixes
Diffstat (limited to 'lib/persistence.cpp')
-rw-r--r-- | lib/persistence.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/persistence.cpp b/lib/persistence.cpp index 5744cd7..15391ad 100644 --- a/lib/persistence.cpp +++ b/lib/persistence.cpp @@ -62,6 +62,7 @@ namespace Persistence { throw std::runtime_error("Unexpected object"); } + /// LCOV_EXCL_START Don't think we can trigger these from something lexer will parse void Selection::beforeValue(Stack &) { @@ -78,4 +79,5 @@ namespace Persistence { Selection::endObject(Stack &) { } + /// LCOV_EXCL_STOP } |