Header-only C++ library with commonly useful stuff.
Find a file
King_DuckZ 938c8fa9a4 Make code a bit more readable
Changed so that int_conv<string_view>() called on a
non-constexpr doesn't compiler anymore (because code
would try to go through a consteval method). It
wouldn't work anyways as the returned value would be
always garbage. If you want a string_view then you
must either give a constexpr input value or you must
call int_conv_raw and call to_string_view() yourself.
This is better than throwing a runtime exception (which
was working ok btw).

All the SafeRetVal stuff is not needed anymore.

Also no need for all that confusing sfinae, I can just
use a bool FromInt and specialise on that.
2021-05-29 16:44:06 +02:00
include/duckhandy Make code a bit more readable 2021-05-29 16:44:06 +02:00
lib Update Catch2 to latest v2.x branch 2021-05-28 02:54:18 +02:00
test/unit Make code a bit more readable 2021-05-29 16:44:06 +02:00
.gitignore Get rid of lexical_cast. 2020-08-13 20:47:42 +01:00
.gitmodules Remove submodule, use the system Sprout 2020-05-05 01:59:04 +02:00
CMakeLists.txt Fix wrong variable name 2021-05-28 01:44:49 +02:00
COPYING First import 2016-07-14 14:59:15 +01:00