On Windows on i386, C++ member functions use a different calling
convention (__thiscall) than the default one for regular functions
(__cdecl). (On Windows on architectures other than i386, both calling
convention attributes are no-ops.)
This matches how libstdc++ declares these types.
This fixes the std/thread/futures/futures.{shared,unique}_future/dtor.pass.cpp
tests on i386 mingw.