BeBuild: Remove B_ALWAYS_INLINE.

This file should ideally contain only those things needed
across all system headers, even POSIX ones, and all other
declarations (B_* ones especially) should go in SupportDefs.h.
However, as nothing but riscv64 uses this right now, I've just
moved it to there.
This commit is contained in:
Augustin Cavalier 2021-11-18 16:35:05 -05:00
parent 7db2616c44
commit afcfd3c5d5
2 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,6 @@
#if __GNUC__ >= 4
# define _ALIGNED_BY_ARG(_no_) __attribute__((alloc_align(_no_)))
# define _EXPORT __attribute__((visibility("default")))
# define B_ALWAYS_INLINE __attribute__((always_inline)) inline
#else
# define _ALIGNED_BY_ARG(_no_)
# define _EXPORT

View File

@ -8,6 +8,8 @@
#include <SupportDefs.h>
#define B_ALWAYS_INLINE __attribute__((always_inline)) inline
enum {
modeU = 0,