Taylor Kendall

Results 4 comments of Taylor Kendall

Yeah weirdly sometimes a book that worked the day before stops working. I have to reset the cache/storage space, re-download the book and add it back in. Lose my place...

I would love to help with this but my JS skills are crap.

Same here. ``` _ _ _____ _____ __ __ _ _ _ ___ | \ | | | ____| |_ _| | \/ | / \ | | | |...

```cpp struct TagCfgStructBase { std::string Name = ""; std::optional Units; }; NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(TagCfgStructBase, Name, Units) TEST_CASE("TestCfgStructScaled serialization & deserialization") { TagCfgStructBase tag_without_units = {.Name = "Unscaled"}; nlohmann::json json_tag_without_units = tag_without_units; std::cout