aboutsummaryrefslogtreecommitdiffstats
path: root/tool/gen_dummy_probes.rb
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:39:55 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:39:55 +0000
commit2cdd17b458eb2be8dce033217d6debb46b716090 (patch)
treebfac3a4941fbea021d1076245ade342ebadcb2c3 /tool/gen_dummy_probes.rb
parent9aa75d08ceb497645940f06bf690f3bdb764031e (diff)
downloadruby-2cdd17b458eb2be8dce033217d6debb46b716090.tar.gz
* tool/gen_dummy_probes.rb: remove comments in probes.d to fix the
compilation error introduced by r38755. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/gen_dummy_probes.rb')
-rwxr-xr-xtool/gen_dummy_probes.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/tool/gen_dummy_probes.rb b/tool/gen_dummy_probes.rb
index e3d9232e52..91191f1918 100755
--- a/tool/gen_dummy_probes.rb
+++ b/tool/gen_dummy_probes.rb
@@ -4,6 +4,9 @@
text = ARGF.read
text.gsub!(/^(?!#)(.*)/){$1.upcase}
+# remove comments
+text.gsub!(%r'/\*.*?\*/'m, '')
+
# remove the pragma declarations
text.gsub!(/^#pragma.*$/, '')