nickel2halide

WTF

Feb 26th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. /*
  2. Assertion failed: (cord[x] < oord[y] && oord[y] < word[z]), function recur, file cryptcow.cpp, line 182.
  3. */
  4.  
  5. for (x = 0; x < ec; ++x) {
  6.     for (y = 0; y < eo; ++y) {
  7.         if (cord[x] >= oord[y]) continue;
  8.                 for (z = 0; z < ew; ++z) {
  9.                     if (oord[y] >= word[z]) continue;
  10.                     assert(cord[x] < oord[y] && oord[y] < word[z]);
  11.  
  12.             // shit
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment