X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=tests%2Finexact.qc;h=11dc2c62521d0ce9e87ffb8f898f214f647a9edd;hp=873d7ccaca37e9a056b64d2887e26c9a5c73545e;hb=641136fee3e2f589f93ad6a7b3213b0247107303;hpb=bbeb2517c0bdf7477124f9a3acda0213ebe36529 diff --git a/tests/inexact.qc b/tests/inexact.qc index 873d7cc..11dc2c6 100644 --- a/tests/inexact.qc +++ b/tests/inexact.qc @@ -1,7 +1,7 @@ -void main() { - const float a = 1.0 / 3.0; - const float b = 0.3333333333333; +const float a = 1.0 / 3.0; +const float b = 0.33333333333; +void main() { if (a == b) { // Should trigger warning }