Mercurial > hg > octave-nkf
comparison scripts/gethelp.cc @ 10553:f88e3d5d88e2
avoid GCC warnings
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 23 Apr 2010 15:57:32 -0400 |
parents | bc59bc6282a0 |
children | 1dfbcc9eee92 |
comparison
equal
deleted
inserted
replaced
10552:394a83606f03 | 10553:f88e3d5d88e2 |
---|---|
71 if (in_comment) | 71 if (in_comment) |
72 { | 72 { |
73 if (! have_help_text) | 73 if (! have_help_text) |
74 { | 74 { |
75 first_comments_seen = true; | 75 first_comments_seen = true; |
76 help_txt += (char) c; | 76 help_txt += static_cast<char> (c); |
77 } | 77 } |
78 | 78 |
79 if (c == '\n') | 79 if (c == '\n') |
80 { | 80 { |
81 in_comment = false; | 81 in_comment = false; |