Skip to content
Snippets Groups Projects
Commit 9a7967a1 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

s/inline/static inline/

parent ea259d67
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ struct OpusDecoder {
#endif
};
inline short SAT16(int x) {
static inline short SAT16(int x) {
return x > 32767 ? 32767 : x < -32768 ? -32768 : (short)x;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment