diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-03-11 16:02:01 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-03-11 16:02:01 (GMT) |
commit | 8bf53bc0199e7f6a24c9d88ad3eb0bf98d759d9c (patch) | |
tree | 8732a6d01d2163df242fb81fe83e62d92b79570f /src/CsgInfo.h | |
parent | 4e2965ac17e4e8c64df327b3988bb0a4006f4357 (diff) |
replace fprintf with PRINT
Diffstat (limited to 'src/CsgInfo.h')
-rw-r--r-- | src/CsgInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CsgInfo.h b/src/CsgInfo.h index 37fe0d0..fe953b5 100644 --- a/src/CsgInfo.h +++ b/src/CsgInfo.h @@ -57,7 +57,7 @@ public: if (this->root_norm_term) { this->root_chain = new CSGChain(); this->root_chain->import(this->root_norm_term); - fprintf(stderr, "Normalized CSG tree has %d elements", int(this->root_chain->polysets.size())); + PRINTB("Normalized CSG tree has %d elements", int(this->root_chain->polysets.size())); } else { this->root_chain = NULL; |