relation_completer progress

This commit is contained in:
Sascha Kühl
2025-07-01 17:13:52 +02:00
parent 5a7ab5d4d0
commit 38cbffc18b
11 changed files with 153 additions and 32 deletions
+8
View File
@@ -45,6 +45,14 @@ private:
utils::identifier pk_;
};
template<typename>
struct is_object_ptr : std::false_type
{};
template<typename Type>
struct is_object_ptr<object_ptr<Type>> : std::true_type
{};
}
#endif //OBJECT_PTR_HPP