Skip to content

Commit

Permalink
Make Rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzhu2118 committed Apr 30, 2024
1 parent 5b16f38 commit 9bc6c92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/ruby_memcheck/ext/extconf_one.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require "mkmf"

$warnflags&.gsub!(/-Wdeclaration-after-statement/, "") # rubocop:disable Style/GlobalVars
$warnflags&.gsub!("-Wdeclaration-after-statement", "") # rubocop:disable Style/GlobalVars

create_makefile("ruby_memcheck_c_test_one")
2 changes: 1 addition & 1 deletion test/ruby_memcheck/ext/extconf_two.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require "mkmf"

$warnflags&.gsub!(/-Wdeclaration-after-statement/, "") # rubocop:disable Style/GlobalVars
$warnflags&.gsub!("-Wdeclaration-after-statement", "") # rubocop:disable Style/GlobalVars

create_makefile("ruby_memcheck_c_test_two")

0 comments on commit 9bc6c92

Please sign in to comment.