Fixed visibility of MRuby::Command::Compiler#setup_debug

In #5977 it was incorrectly set to `private`.
This commit is contained in:
dearblue
2023-05-26 21:37:29 +09:00
parent 7f887f1928
commit a7bee69452
+6 -6
View File
@@ -129,6 +129,12 @@ module MRuby
end
end
# This method can be redefined as a singleton method where appropriate.
# Manipulate `flags`, `include_paths` and/or more if necessary.
def setup_debug(conf)
nil
end
private
#
@@ -172,12 +178,6 @@ module MRuby
def object_ext?(path)
File.extname(path) == build.exts.object
end
# This method can be redefined as a singleton method where appropriate.
# Manipulate `flags`, `include_paths` and/or more if necessary.
def setup_debug(conf)
nil
end
end
class Command::Linker < Command