diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-25 02:11:12 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-25 02:11:12 (GMT) |
commit | eff1f7f8c91cee34c584a89c5d09e401c609f93e (patch) | |
tree | 543ae3bd3587dd3a97fbaa660ad9aaceb5a3823f /src/PolySetCache.cc | |
parent | 16c05eb533f94799a80f5b98c01e952e1cfe337b (diff) |
Ported printutils away from Qt
Diffstat (limited to 'src/PolySetCache.cc')
-rw-r--r-- | src/PolySetCache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PolySetCache.cc b/src/PolySetCache.cc index cff4e88..04f4127 100644 --- a/src/PolySetCache.cc +++ b/src/PolySetCache.cc @@ -21,8 +21,8 @@ void PolySetCache::setMaxSize(size_t limit) void PolySetCache::print() { - PRINTF("PolySets in cache: %d", this->cache.size()); - PRINTF("PolySet cache size in bytes: %d", this->cache.totalCost()); + PRINTB("PolySets in cache: %d", this->cache.size()); + PRINTB("PolySet cache size in bytes: %d", this->cache.totalCost()); } PolySetCache::cache_entry::cache_entry(const shared_ptr<PolySet> &ps) : ps(ps) |