diff options
| author | Michael Bebenita <[email protected]> | 2010-07-28 00:11:28 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-28 20:30:29 -0700 |
| commit | cc4906ba79e1ad05ef8a34e1cc9cfbe5f96d4c6c (patch) | |
| tree | 09af975ae6420f59bfd3048636a1ce5eeb6c99c2 | |
| parent | Add C++ wrapper around uthash. (diff) | |
| download | rust-cc4906ba79e1ad05ef8a34e1cc9cfbe5f96d4c6c.tar.xz rust-cc4906ba79e1ad05ef8a34e1cc9cfbe5f96d4c6c.zip | |
Wrap long lines.
| -rw-r--r-- | src/rt/rust_chan.cpp | 4 | ||||
| -rw-r--r-- | src/rt/rust_log.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/rt/rust_chan.cpp b/src/rt/rust_chan.cpp index 6aa9121a..497968c7 100644 --- a/src/rt/rust_chan.cpp +++ b/src/rt/rust_chan.cpp @@ -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() { diff --git a/src/rt/rust_log.h b/src/rt/rust_log.h index e3acb93e..29c85e70 100644 --- a/src/rt/rust_log.h +++ b/src/rt/rust_log.h @@ -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: |