Silent warnings on unused variables in some tests; make test UniqueHandleDefaultArguments part of the solution for 64 bit only. (#1704)

This commit is contained in:
Andreas Süßenbach
2023-10-18 13:45:14 +02:00
committed by GitHub
parent 5b6f6faf7a
commit 3e0d722ca5
5 changed files with 35 additions and 14 deletions

View File

@@ -69,15 +69,15 @@ std::vector<int> const getConstVector()
return { 1, 2 };
}
std::initializer_list<int> getInitializerList()
{
return { 1, 2 };
}
//std::initializer_list<int> getInitializerList()
//{
// return { 1, 2 };
//}
std::initializer_list<int> const getConstInitializerList()
{
return { 1, 2 };
}
//std::initializer_list<int> const getConstInitializerList()
//{
// return { 1, 2 };
//}
int main( int /*argc*/, char ** /*argv*/ )
{