Mercurial > hg > octave-nkf
diff src/comment-list.h @ 10313:f3b65e1ae355
untabify src header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:16:43 -0500 |
parents | cd96d29c5efa |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/src/comment-list.h +++ b/src/comment-list.h @@ -48,7 +48,7 @@ }; octave_comment_elt (const std::string& s = std::string (), - comment_type t = unknown) + comment_type t = unknown) : txt (s), typ (t) { } octave_comment_elt (const octave_comment_elt& oc) @@ -57,10 +57,10 @@ octave_comment_elt& operator = (const octave_comment_elt& oc) { if (this != &oc) - { - txt = oc.txt; - typ = oc.typ; - } + { + txt = oc.txt; + typ = oc.typ; + } return *this; } @@ -91,7 +91,7 @@ { octave_base_list<octave_comment_elt>::append (elt); } void append (const std::string& s, - octave_comment_elt::comment_type t = octave_comment_elt::unknown) + octave_comment_elt::comment_type t = octave_comment_elt::unknown) { append (octave_comment_elt (s, t)); } octave_comment_list *dup (void) const;