SCI: Removed most uses of the 'inline' keyword. It is usually better to let the compiler figure out what to inline. As it is, most of these looked as if they were randomly placed ;)
svn-id: r39352
This commit is contained in:
parent
40b313c28e
commit
642bad22d8
22 changed files with 84 additions and 101 deletions
|
@ -237,7 +237,7 @@ void vocab_free_rule_list(parse_rule_list_t *list) {
|
|||
}
|
||||
}
|
||||
|
||||
static inline int _rules_equal_p(parse_rule_t *r1, parse_rule_t *r2) {
|
||||
static int _rules_equal_p(parse_rule_t *r1, parse_rule_t *r2) {
|
||||
if ((r1->id != r2->id) || (r1->length != r2->length) || (r1->first_special != r2->first_special))
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue