summaryrefslogtreecommitdiff
path: root/lib/rdoc/parsers/parse_c.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/parsers/parse_c.rb')
-rw-r--r--lib/rdoc/parsers/parse_c.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/rdoc/parsers/parse_c.rb b/lib/rdoc/parsers/parse_c.rb
index 89d36c6c50..e43fb00829 100644
--- a/lib/rdoc/parsers/parse_c.rb
+++ b/lib/rdoc/parsers/parse_c.rb
@@ -212,6 +212,11 @@ module RDoc
$stderr.flush
end
+ def remove_private_comments(comment)
+ comment.gsub!(/\/?\*--(.*?)\/?\*\+\+/m, '')
+ comment.sub!(/\/?\*--.*/m, '')
+ end
+
# remove lines that are commented out that might otherwise get
# picked up when scanning for classes and methods
@@ -552,6 +557,8 @@ module RDoc
comment, params = $1, $2
body_text = $&
+ remove_private_comments(comment) if comment
+
# see if we can find the whole body
re = Regexp.escape(body_text) + '[^(]*^\{.*?^\}'