Adam Shapiro
Adam Shapiro
Having a similar issue. Mine is set to auto-login so the display is blank as soon as I open the program. It worked fine until a few days ago. I...
@nbrachet this is great timing - we just ran into the same issue and I was about to make this change myself when I found your PR. I suggest adding...
Oh and actually one more test change to test for the `at()` fix: ``` SECTION("Lookup failure") { + REQUIRE(frozen_map.find(3) == frozen_map.end()); + REQUIRE_THROWS_AS(frozen_map.at(3), std::out_of_range); REQUIRE(frozen_map.find(5) == frozen_map.end()); REQUIRE_THROWS_AS(frozen_map.at(5), std::out_of_range); }...
I think having access to `constexpr`-capable `vector` and `array` similar to the other STL-like containers would be quite useful for a lot of applications. In our use case, for example,...
Hey @serge-sans-paille, just following up. I added unit tests a couple weeks ago as requested. I am also currently adding `erase()` and `insert()` support, but I can add that in...
Well to be clear, we are using `frozen::vector` (i.e., `cvector`) to accomplish the 2 use cases I described above, so not exposing it doesn't work for us unfortunately. I added...