vecx
vecx copied to clipboard
Use static inline for clang compatibility
The current code cannot be built with clang which is now the default compiler on OS X, complaining missing symbols for inline functions. It can be easily fixed by declaring them static. Here is a nice explanation.