Remove multi-line comment compiler warning from PipeCapture.cc

Remove this compiler warning:
    PipeCapture.cc:56:2: warning: multi-line comment [-Wcomment]
      //      /\                                          /\        /\
      ^

added by commit:
    1b54123580
    Enhance line discipline in PipeCapture::OnReadable() (#709276)
This commit is contained in:
Mike Fleetwood 2013-11-22 22:19:03 +00:00
parent d842b8cdfb
commit b3f0a0b1be
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ bool PipeCapture::OnReadable( Glib::IOCondition condition )
// Linestart, cursor and lineend are offsets into buff like this:
// "Previous line\n
// Current line. Text progress bar: XXXXXXXXXX----------"
// /\ /\ /\
// linestart cursor lineend
// ^ ^ ^
// linestart cursor lineend
Glib::ustring str;
Glib::IOStatus status = channel->read( str, 512 );
if (status == Glib::IO_STATUS_NORMAL)