Skip to content

Commit

Permalink
Merge pull request dolphin-emu#10628 from Minty-Meeo/force_inline-min…
Browse files Browse the repository at this point in the history
…or-change

Change _WIN32 check to a _MSC_VER check in Inline.h
  • Loading branch information
Tilka authored May 3, 2022
2 parents f75f19a + 9c22205 commit ac64382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/Inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#pragma once

#ifdef _WIN32
#ifdef _MSC_VER
#define DOLPHIN_FORCE_INLINE __forceinline
#else
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
Expand Down

0 comments on commit ac64382

Please sign in to comment.