Skip to content

Commit

Permalink
updated NOTES.txt
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
silverqx committed Dec 19, 2022
1 parent ec89b88 commit 0900e44
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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>;

Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 0900e44

Please sign in to comment.