Am 13.12.2010 12:39, schrieb Ged Murphy:
pschweitzer(a)svn.reactos.org wrote:
ASSERT(Name->Length);
ASSERT(Expression->Length);
ASSERT(!FsRtlDoesDbcsContainWildCards(Name));
It'd be preferable to wrap that last ASSERT so it isn't compiled into release
builds.
Adding functions into asserts adds overhead on release builds as they're called for
no reason.
Shouldn't ASSERT() be defined to nothing on release builds?