Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78191 - trunk/libs/iostreams/test/detail
From: juergen.hunold_at_[hidden]
Date: 2012-04-25 09:41:41


Author: jhunold
Date: 2012-04-25 09:41:38 EDT (Wed, 25 Apr 2012)
New Revision: 78191
URL: http://svn.boost.org/trac/boost/changeset/78191

Log:
Fix: use official Boost.Filesystem API.
Text files modified:
   trunk/libs/iostreams/test/detail/temp_file.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/iostreams/test/detail/temp_file.hpp
==============================================================================
--- trunk/libs/iostreams/test/detail/temp_file.hpp (original)
+++ trunk/libs/iostreams/test/detail/temp_file.hpp 2012-04-25 09:41:38 EDT (Wed, 25 Apr 2012)
@@ -13,7 +13,7 @@
 #include <cstdlib> // rand, toupper, tolower (VC6)
 #include <fstream>
 #include <string>
-#include <boost/filesystem/v3/operations.hpp>
+#include <boost/filesystem/operations.hpp>
 #include "./constants.hpp"
 
 #ifdef BOOST_NO_STDC_NAMESPACE
@@ -39,7 +39,7 @@
     operator const ::std::string() const { return name_; }
 private:
     void set_name() {
- name_ = boost::filesystem3::unique_path().string();
+ name_ = boost::filesystem::unique_path().string();
     }
 
     ::std::string name_;


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