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
44a834f3
Commit
44a834f3
authored
Jun 17, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2402 from katmutua/master
[minor-fix]Update value pointer comments
parents
3dce1fb3
17e3203c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/variable.c
src/variable.c
+6
-6
No files found.
src/variable.c
View file @
44a834f3
...
...
@@ -124,10 +124,10 @@ iv_put(mrb_state *mrb, iv_tbl *t, mrb_sym sym, mrb_value val)
* mrb
* t the variable table to be searched.
* sym the symbol to be used as the key.
* vp the value pointer. Rec
ieves the value if the specified symbol contain
s
* in the instance variable table.
* vp the value pointer. Rec
eives the value if the specified symbol i
s
*
contained
in the instance variable table.
* Returns
* true if the spec
fiyed symbol contains
in the instance variable table.
* true if the spec
ified symbol is contained
in the instance variable table.
*/
static
mrb_bool
iv_get
(
mrb_state
*
mrb
,
iv_tbl
*
t
,
mrb_sym
sym
,
mrb_value
*
vp
)
...
...
@@ -159,10 +159,10 @@ iv_get(mrb_state *mrb, iv_tbl *t, mrb_sym sym, mrb_value *vp)
* Parameters
* t the variable table to be searched.
* sym the symbol to be used as the key.
* vp the value pointer. Rec
ieve the deleted value if the symbol contan
s
*
in the instance vari
ble table.
* vp the value pointer. Rec
eive the deleted value if the symbol i
s
*
contained in the instance varia
ble table.
* Returns
* true if the spec
fied symbol contains
in the instance variable table.
* true if the spec
ified symbol is contained
in the instance variable table.
*/
static
mrb_bool
iv_del
(
mrb_state
*
mrb
,
iv_tbl
*
t
,
mrb_sym
sym
,
mrb_value
*
vp
)
...
...
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