Disabled use of MS-specific narrow character functions when _WIN32_WCE is defined.

[SVN r41143]
This commit is contained in:
John Maddock
2007-11-16 12:00:32 +00:00
parent bed800b315
commit 326f120ffd
2 changed files with 3 additions and 3 deletions

View File

@ -354,7 +354,7 @@ void BuildFileList(std::list<std::string>* pl, const char* files, bool recurse)
while(dstart != dend)
{
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) && !defined(_WIN32_WCE)
(::sprintf_s)(buf, sizeof(buf), "%s%s%s", dstart.path(), directory_iterator::separator(), ptr);
#else
(std::sprintf)(buf, "%s%s%s", dstart.path(), directory_iterator::separator(), ptr);