diff --git a/common/include/Utilities/FixedPointTypes.h b/common/include/Utilities/FixedPointTypes.h index 9001cbac68..71c4519112 100644 --- a/common/include/Utilities/FixedPointTypes.h +++ b/common/include/Utilities/FixedPointTypes.h @@ -74,7 +74,3 @@ struct FixedInt typedef FixedInt<256> Fixed256; typedef FixedInt<100> Fixed100; - -#ifdef __LINUX__ -#include "FixedPointTypes.inl" -#endif diff --git a/common/src/Utilities/IniInterface.cpp b/common/src/Utilities/IniInterface.cpp index 3f5121289b..03a6154983 100644 --- a/common/src/Utilities/IniInterface.cpp +++ b/common/src/Utilities/IniInterface.cpp @@ -23,10 +23,8 @@ const wxRect wxDefaultRect( wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDe // Implement FixedPointTypes (for lack of a better location, for now) #include "FixedPointTypes.inl" -#ifndef __LINUX__ -template FixedInt<100>; -template FixedInt<256>; -#endif +template struct FixedInt<100>; +template struct FixedInt<256>; static int _calcEnumLength( const wxChar* const* enumArray ) {