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
b473e9b2
Commit
b473e9b2
authored
Jul 08, 2013
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1355 from suzukaze/refactor-object.c
Refactor true_or() and false_and() in object.c.
parents
6ed8b212
948b1716
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
src/object.c
src/object.c
+0
-6
No files found.
src/object.c
View file @
b473e9b2
...
...
@@ -172,9 +172,6 @@ true_to_s(mrb_state *mrb, mrb_value obj)
static
mrb_value
true_or
(
mrb_state
*
mrb
,
mrb_value
obj
)
{
mrb_bool
obj2
;
mrb_get_args
(
mrb
,
"b"
,
&
obj2
);
return
mrb_true_value
();
}
...
...
@@ -203,9 +200,6 @@ true_or(mrb_state *mrb, mrb_value obj)
static
mrb_value
false_and
(
mrb_state
*
mrb
,
mrb_value
obj
)
{
mrb_bool
obj2
;
mrb_get_args
(
mrb
,
"b"
,
&
obj2
);
return
mrb_false_value
();
}
...
...
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