Fix warning on confused Mac OS X gcc 4.0

This commit is contained in:
Eric Scharff 2008-06-02 10:12:09 -06:00
parent 3b0e05b739
commit 33306aa2f5

View File

@ -807,9 +807,8 @@ targetOrNull(Context* c, Value* v)
return v->target;
} else if (v->reads and v->reads->target) {
return v->reads->target->readTarget(c, v->reads);
} else {
return 0;
}
return 0;
}
class AbstractSite: public Site {