test/utilities: Fix LLP64-aware.
This commit is contained in:
@@ -30,13 +30,13 @@ public:
|
||||
|
||||
int main()
|
||||
{
|
||||
test_alignment_of<int&, sizeof(long) == 4 ? 4 : 8>();
|
||||
test_alignment_of<int&, sizeof(void*) == 4 ? 4 : 8>();
|
||||
test_alignment_of<Class, 1>();
|
||||
test_alignment_of<int*, sizeof(long) == 4 ? 4 : 8>();
|
||||
test_alignment_of<const int*, sizeof(long) == 4 ? 4 : 8>();
|
||||
test_alignment_of<int*, sizeof(void*) == 4 ? 4 : 8>();
|
||||
test_alignment_of<const int*, sizeof(void*) == 4 ? 4 : 8>();
|
||||
test_alignment_of<char[3], 1>();
|
||||
test_alignment_of<int, 4>();
|
||||
test_alignment_of<double, sizeof(long) == 4 ? 4 : 8>();
|
||||
test_alignment_of<double, sizeof(void*) == 4 ? 4 : 8>();
|
||||
test_alignment_of<bool, 1>();
|
||||
test_alignment_of<unsigned, 4>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user