Simon Krajewski 12 роки тому
батько
коміт
88d5b34842
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      tests/unit/TestGADT.hx

+ 1 - 1
tests/unit/TestGADT.hx

@@ -60,7 +60,7 @@ class TestGADT extends Test {
 	static function eval<T>(e:Expr<T>):T {
 		return switch(e) {
 			case EConst(c): evalConst(c);
-			case EBinop(op,e1,e2): evalBinop(op,e1,e2); // TODO: this generates some unused variable warnings in macro context (issue #1675?)
+			case EBinop(_op,_e1,_e2): evalBinop(_op,_e1,_e2); // TODO: this generates some unused variable warnings in macro context (issue #1675?)
 		}
 	}
 }