summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger
diff options
context:
space:
mode:
authorcremno <[email protected]>2014-11-19 23:41:08 +0100
committercremno <[email protected]>2014-11-20 02:39:48 +0100
commitc9c0f9a79b27034926b2b7ad190b1e48299e6581 (patch)
tree8fd81bf09ca3f98d2214a739cc7fac3173d8f16b /mrbgems/mruby-bin-debugger
parentc2bc44e131bcbe63a8913c4fc5f15695bec08bc0 (diff)
downloadmruby-c9c0f9a79b27034926b2b7ad190b1e48299e6581.tar.gz
mruby-c9c0f9a79b27034926b2b7ad190b1e48299e6581.zip
remove const type qualifier
clang 3.5.0 with -Wextra produces a -Wignored-qualifiers diagnostic.
Diffstat (limited to 'mrbgems/mruby-bin-debugger')
-rwxr-xr-xmrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
index ec5a68dc1..656b5d0af 100755
--- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
+++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
@@ -502,7 +502,7 @@ get_and_parse_command(mrb_state *mrb, mrdb_state *mrdb)
return cmd;
}
-static const int32_t
+static int32_t
check_method_breakpoint(mrb_state *mrb, mrb_irep *irep, mrb_code *pc, mrb_value *regs)
{
struct RClass* c;