need to find a better way of doing contains on all containers

v1
Brett 2024-01-02 02:21:44 -05:00
parent bf6d15015a
commit 8411810ab5
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,8 @@
#undef BLT_USE_CPP20
#endif
#define BLT_CONTAINS_IF(container, value) std::find_if(container.begin(), container.end(), value) != container.end()
#define INCLUDE_FS \
#if defined(CXX17_FILESYSTEM) || defined (CXX17_FILESYSTEM_LIBFS) \
#include <filesystem>\