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:
committed by
GitHub
parent
5b6f6faf7a
commit
3e0d722ca5
@@ -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*/ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user