mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 17:58:09 +08:00

like, with the following (invalid) toml file > a.b = "value" > a.b.c = 42 The error message becomes > terminate called after throwing an instance of 'toml::syntax_error' > what(): [error] toml::insert_value: target (a.b) is neither table nor > an array of tables > --> example.toml > 1 | a.b = "value" > | ~~~~~~~ actual type is string > ... > 2 | a.b.c = 42 > | ~~ inserting this