$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Methods prefixed by cdecl?
From: Igor R (boost.lists_at_[hidden])
Date: 2010-10-19 18:36:19
> Â I'm using Windows 7 (64 bit)
Do you compile for 64 bit? Boost and your application should be built
for the same architecture.
> But the methods it's looking for are prefixed by "__cdecl". I've tried compiling my code with the /Gd and
> /Gz options, and neither seemed to work.
/Gz is for stdcall, /Gd is for cdecl. If you do not specify either of
them, then __thiscall is used for c++ member functions by default.