Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jennifer K. Sun
project01
Commits
8773ee6e
Commit
8773ee6e
authored
5 years ago
by
Caleb C. Sander
Browse files
Options
Download
Email Patches
Plain Diff
Add missing function @return comment
parent
824a919d
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
read_class.h
+2
-2
read_class.h
with
2 additions
and
2 deletions
+2
-2
read_class.h
View file @
8773ee6e
...
...
@@ -21,7 +21,7 @@ cp_info *get_constant(constant_pool_t *constant_pool, uint16_t index);
* @param name the method name, e.g. "factorial"
* @param descriptor the method descriptor string, e.g. "(I)I"
* @param class the parsed class file
* @return the method if it was found,
or
NULL
* @return the method if it was found, NULL
otherwise
*/
method_t
*
find_method
(
const
char
*
name
,
const
char
*
descriptor
,
class_file_t
*
class
);
/**
...
...
@@ -29,7 +29,7 @@ method_t *find_method(const char *name, const char *descriptor, class_file_t *cl
*
* @param index the constant pool index of the Methodref to call
* @param class the parsed class file
* @return
* @return
the method if it was found, NULL otherwise
*/
method_t
*
find_method_from_index
(
uint16_t
index
,
class_file_t
*
class
);
/**
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help