Cleaning up asserts and file/line macros.
This commit is contained in:
@@ -23,12 +23,12 @@ void Block::AssertNoCycles() {
|
||||
while ((hare = hare->next)) {
|
||||
if (hare == tortoise) {
|
||||
// Cycle!
|
||||
XEASSERTALWAYS();
|
||||
assert_always();
|
||||
}
|
||||
hare = hare->next;
|
||||
if (hare == tortoise) {
|
||||
// Cycle!
|
||||
XEASSERTALWAYS();
|
||||
assert_always();
|
||||
}
|
||||
tortoise = tortoise->next;
|
||||
if (!hare || !tortoise) {
|
||||
|
||||
Reference in New Issue
Block a user