Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
96d4c2d3
Commit
96d4c2d3
authored
Aug 11, 2017
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused argument from `each_backtrace_func`.
parent
1d781da8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
src/backtrace.c
src/backtrace.c
+2
-4
No files found.
src/backtrace.c
View file @
96d4c2d3
...
...
@@ -21,7 +21,7 @@ struct backtrace_location {
mrb_sym
method_id
;
};
typedef
void
(
*
each_backtrace_func
)(
mrb_state
*
,
int
i
,
struct
backtrace_location
*
,
void
*
);
typedef
void
(
*
each_backtrace_func
)(
mrb_state
*
,
struct
backtrace_location
*
,
void
*
);
static
const
mrb_data_type
bt_type
=
{
"Backtrace"
,
mrb_free
};
...
...
@@ -66,7 +66,7 @@ each_backtrace(mrb_state *mrb, ptrdiff_t ciidx, mrb_code *pc0, each_backtrace_fu
}
loc
.
method_id
=
ci
->
mid
;
func
(
mrb
,
j
,
&
loc
,
data
);
func
(
mrb
,
&
loc
,
data
);
}
}
...
...
@@ -170,7 +170,6 @@ mrb_print_backtrace(mrb_state *mrb)
static
void
count_backtrace_i
(
mrb_state
*
mrb
,
int
i
,
struct
backtrace_location
*
loc
,
void
*
data
)
{
...
...
@@ -182,7 +181,6 @@ count_backtrace_i(mrb_state *mrb,
static
void
pack_backtrace_i
(
mrb_state
*
mrb
,
int
i
,
struct
backtrace_location
*
loc
,
void
*
data
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment