blob: 9df9590b9f93040ddcee6929e4c84cd9f695e9bb (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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
|