2018-06-09 11:34:43 -04:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-06-09 11:34:43 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-05-02 01:06:45 -05:00
|
|
|
#ifdef _MSC_VER
|
2018-06-09 11:47:01 -04:00
|
|
|
#define DOLPHIN_FORCE_INLINE __forceinline
|
|
|
|
|
#else
|
|
|
|
|
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
|
2018-06-09 11:34:43 -04:00
|
|
|
#endif
|