mirror of
https://github.com/g-truc/glm.git
synced 2026-09-24 03:14:23 +00:00
@@ -65,13 +65,12 @@ static int test_operators()
|
||||
}
|
||||
|
||||
{
|
||||
genType const A(0);
|
||||
genType const B(1);
|
||||
genType const C(2);
|
||||
genType B(1);
|
||||
genType C(2);
|
||||
|
||||
genType const D = B << B;
|
||||
genType D = B << B;
|
||||
Error += D == genType(2) ? 0 : 1;
|
||||
genType const E = C >> B;
|
||||
genType E = C >> B;
|
||||
Error += E == genType(1) ? 0 : 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user