mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-04 20:43:44 -05:00
9c22205ab1
This is compiler dependent, not OS dependent.
11 lines
242 B
C
11 lines
242 B
C
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#ifdef _MSC_VER
|
|
#define DOLPHIN_FORCE_INLINE __forceinline
|
|
#else
|
|
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
|
|
#endif
|