$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [filesystem] operations.hpp Won't Compile with VC10 using Boost 1.47
From: Stephan T. Lavavej (stl_at_[hidden])
Date: 2012-02-14 14:19:31
[Robert Stewart]
> BOOST_NO_STD_WSTRING didn't appear in the output. This was a false alarm. Why does VC print #error messages that are conditionally compiled and don't apply!
It doesn't:
C:\Temp>type meow.cpp
# if defined( BOOST_NO_STD_WSTRING )
# error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support
# endif
int main() { }
C:\Temp>cl /EHsc /nologo /W4 /MTd meow.cpp
meow.cpp
C:\Temp>
STL