mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-12 20:38:56 -05:00
updated NOTES.txt
[skip ci]
This commit is contained in:
@@ -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<TypeToCheck>;
|
||||
|
||||
@@ -936,6 +937,11 @@ Check copy/move/swap operations:
|
||||
qDebug() << std::is_trivially_move_assignable_v<TypeToCheck>;
|
||||
qDebug() << std::is_trivially_destructible_v<TypeToCheck>;
|
||||
|
||||
qDebug() << "-- nothrow constructible from";
|
||||
qDebug() << std::is_nothrow_constructible_v<TypeToCheck, ConstructibleFrom>;
|
||||
qDebug() << std::is_nothrow_constructible_v<TypeToCheck, const ConstructibleFrom &>;
|
||||
qDebug() << std::is_nothrow_constructible_v<TypeToCheck, ConstructibleFrom &&>;
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user