[gparted] Remove multi-line comment compiler warning from PipeCapture.cc



commit b3f0a0b1beec7c06512ff24da6ea928bdb03cb8d
Author: Mike Fleetwood <mike fleetwood googlemail com>
Date:   Fri Nov 22 22:19:03 2013 +0000

    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:
        1b54123580aa668d3a2c391cce2d60c65a1668f9
        Enhance line discipline in PipeCapture::OnReadable() (#709276)

 src/PipeCapture.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/PipeCapture.cc b/src/PipeCapture.cc
index 1a55cc2..4224c8d 100644
--- a/src/PipeCapture.cc
+++ b/src/PipeCapture.cc
@@ -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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]