Changeset 20720
- Timestamp:
- 08/13/07 12:08:21 (1 year ago)
- Files:
-
- juggler/trunk/modules/vapor/vpr/Util/Debug.cpp (modified) (2 diffs)
- juggler/trunk/modules/vapor/vpr/Util/Debug.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/vapor/vpr/Util/Debug.cpp
r20698 r20720 503 503 } 504 504 505 void Debug::pushThreadLocalColor(co lor_out_tcolor)505 void Debug::pushThreadLocalColor(const color_out_t& color) 506 506 { 507 507 (*gVprDebugCurColor).push_back(color); … … 545 545 546 546 DebugOutputGuard::DebugOutputGuard(const vpr::DebugCategory& cat, 547 const int level, std::string entryText, 548 std::string exitText, bool indent) 547 const int level, 548 const std::string& entryText, 549 const std::string& exitText, 550 const bool indent) 549 551 : mCat(cat) 550 552 , mLevel(level) juggler/trunk/modules/vapor/vpr/Util/Debug.h
r20698 r20720 342 342 void pushThreadLocalColumn(int column); 343 343 void popThreadLocalColumn(); 344 void pushThreadLocalColor(co lor_out_tcolor);344 void pushThreadLocalColor(const color_out_t& color); 345 345 void popThreadLocalColor(); 346 346 //@} … … 441 441 struct DebugColorGuard 442 442 { 443 DebugColorGuard(co lor_out_tcolor_val)443 DebugColorGuard(const color_out_t& color_val) 444 444 { 445 445 vprDEBUG_PushTSColor(color_val); … … 460 460 { 461 461 DebugOutputGuard(const vpr::DebugCategory& cat, const int level, 462 std::stringentryText,463 std::stringexitText = std::string(""),464 bool indent = true);462 const std::string& entryText, 463 const std::string& exitText = std::string(""), 464 const bool indent = true); 465 465 466 466 ~DebugOutputGuard();
