Forráskód Böngészése

Loosen sPassInstances.Count check

Brian Fiete 3 éve
szülő
commit
f7d2e57077
1 módosított fájl, 1 hozzáadás és 2 törlés
  1. 1 2
      IDE/src/Compiler/BfPassInstance.bf

+ 1 - 2
IDE/src/Compiler/BfPassInstance.bf

@@ -84,8 +84,7 @@ namespace IDE.Compiler
                 sPassInstances.Add(this);
             }
 
-            //Debug.Assert(sPassInstances.Count <= 5);
-            Debug.Assert(sPassInstances.Count <= 4);
+            Debug.Assert(sPassInstances.Count <= 5);
         }
 
         public ~this()