Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59709 - trunk/libs/filesystem/src
From: daniel_james_at_[hidden]
Date: 2010-02-16 17:33:28


Author: danieljames
Date: 2010-02-16 17:33:27 EST (Tue, 16 Feb 2010)
New Revision: 59709
URL: http://svn.boost.org/trac/boost/changeset/59709

Log:
Use full filesystem namespace as there isn't an alias at this point.
Text files modified:
   trunk/libs/filesystem/src/path.cpp | 3 ++-
   1 files changed, 2 insertions(+), 1 deletions(-)

Modified: trunk/libs/filesystem/src/path.cpp
==============================================================================
--- trunk/libs/filesystem/src/path.cpp (original)
+++ trunk/libs/filesystem/src/path.cpp 2010-02-16 17:33:27 EST (Tue, 16 Feb 2010)
@@ -47,7 +47,8 @@
     // and nothing else."
     // See http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPInternational/Articles/FileEncodings.html
     std::locale global_loc = std::locale(); // Mac OS doesn't support locale("")
- static std::locale lc(global_loc, new fs::detail::utf8_codecvt_facet);
+ static std::locale lc(global_loc,
+ new boost::filesystem::detail::utf8_codecvt_facet);
 #endif
     return lc;
   }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk