2018-06-09 15:34:43 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-06-09 15:47:01 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define DOLPHIN_FORCE_INLINE __forceinline
|
|
|
|
#else
|
|
|
|
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
|
2018-06-09 15:34:43 +00:00
|
|
|
#endif
|