Wrap long lines.

This commit is contained in:
Michael Bebenita 2010-07-28 00:11:28 -07:00 committed by Graydon Hoare
parent 436efdcb4f
commit cc4906ba79
2 changed files with 4 additions and 3 deletions

View File

@ -11,8 +11,8 @@ rust_chan::rust_chan(rust_task *task, rust_port *port) :
task->log(rust_log::MEM | rust_log::COMM,
"new rust_chan(task=0x%" PRIxPTR
", port=0x%" PRIxPTR ") -> chan=0x%"
PRIxPTR, (uintptr_t) task, (uintptr_t) port, (uintptr_t) this);
", port=0x%" PRIxPTR ") -> chan=0x%" PRIxPTR,
(uintptr_t) task, (uintptr_t) port, (uintptr_t) this);
}
rust_chan::~rust_chan() {

View File

@ -49,7 +49,8 @@ public:
void reset_indent(uint32_t indent);
void trace_ln(uint32_t thread_id, char *prefix, char *message);
void trace_ln(rust_task *task, uint32_t type_bits, char *message);
void trace_ln(rust_task *task, ansi_color color, uint32_t type_bits, char *message);
void trace_ln(rust_task *task, ansi_color color,
uint32_t type_bits, char *message);
bool is_tracing(uint32_t type_bits);
private: