igl_inline.h 251 B

1234567891011
  1. // This should *NOT* be contained in a IGL_*_H ifdef, since it may be defined
  2. // differently based on when it is included
  3. #ifdef IGL_INLINE
  4. #undef IGL_INLINE
  5. #endif
  6. #ifdef IGL_HEADER_ONLY
  7. # define IGL_INLINE inline
  8. #else
  9. # define IGL_INLINE
  10. #endif