shithub: orca

Download patch

ref: 8231a60d27d3cf4c673a3a7e4f17b25b1b6ba58e
parent: c577a4a25fbb4f4db4305adbc4ca89b340bb510e
author: cancel <cancel@cancel.fm>
date: Sat Dec 1 08:57:32 EST 2018

Cleanup

--- a/base.h
+++ b/base.h
@@ -8,6 +8,7 @@
 #include <string.h>
 #include <unistd.h>
 
+// (gcc / clang) or msvc or other
 #if defined(__GNUC__) || defined(__clang__)
 #define ORCA_FORCE_INLINE __attribute__((always_inline)) inline
 #define ORCA_FORCE_STATIC_INLINE __attribute__((always_inline)) static inline
@@ -22,7 +23,7 @@
 #define ORCA_FORCE_NO_INLINE
 #endif
 
-
+// (gcc / clang) or other
 #if defined(__GNUC__) || defined(__clang__)
 #define ORCA_ASSUME_ALIGNED(_ptr, _alignment)                                  \
   __builtin_assume_aligned(_ptr, _alignment)