diff --git a/NOTES.txt b/NOTES.txt index f3a8d8f40..7cbe7d969 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -905,7 +905,8 @@ Check copy/move/swap operations: -------------------------------- { - using TypeToCheck = Orm::SqlQuery; + using TypeToCheck = Orm::SqlQuery; + using ConstructibleFrom = QVariant; qDebug() << std::is_trivial_v; @@ -936,6 +937,11 @@ Check copy/move/swap operations: qDebug() << std::is_trivially_move_assignable_v; qDebug() << std::is_trivially_destructible_v; + qDebug() << "-- nothrow constructible from"; + qDebug() << std::is_nothrow_constructible_v; + qDebug() << std::is_nothrow_constructible_v; + qDebug() << std::is_nothrow_constructible_v; + exit(0); }