Add note in CONVENTIONS about inlined functions

This commit is contained in:
Ted Nyman 2013-01-03 16:14:23 -08:00
parent 60d61926d3
commit 394711ff75

View File

@ -159,4 +159,14 @@ GIT_END_DECL
#endif
```
## Inlined functions
All inlined functions must be declared as:
```C
GIT_INLINE(result_type) git_modulename_functionname(arg_list);
```