Files
dolphin/Source/Core/Common/Compiler.h
T

21 lines
585 B
C
Raw Normal View History

2018-06-09 11:34:43 -04:00
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
// TODO: Replace this with [[maybe_unused]] directly when GCC 7 and clang 3.9
// are hard requirements.
2018-06-09 11:34:43 -04:00
#if defined(__GNUC__) || __clang__
// Disable "unused function" warnings for the ones manually marked as such.
#define DOLPHIN_UNUSED __attribute__((unused))
2018-06-09 11:34:43 -04:00
#else
#define DOLPHIN_UNUSED [[maybe_unused]]
2018-06-09 11:34:43 -04:00
#endif
#ifdef _WIN32
#define DOLPHIN_FORCE_INLINE __forceinline
#else
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
2018-06-09 11:34:43 -04:00
#endif