small changes in log_manager.cpp and add is_database_primitive type traits and test

This commit is contained in:
Sascha Kühl
2026-02-05 16:36:27 +01:00
parent 018e27a22a
commit c0e0499204
6 changed files with 83 additions and 10 deletions
+3 -6
View File
@@ -15,15 +15,12 @@ struct person {
virtual ~person() = default;
template<typename Operator>
void process(Operator &/*op*/) {
}
static void process(Operator &/*op*/) {}
};
struct student final : person {
};
struct student final : person {};
struct teacher final : person {
};
struct teacher final : person {};
struct names {
unsigned int id{};