|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r67039 - trunk/tools/regression/src
From: jewillco_at_[hidden]
Date: 2010-12-05 15:40:42
Author: jewillco
Date: 2010-12-05 15:40:41 EST (Sun, 05 Dec 2010)
New Revision: 67039
URL: http://svn.boost.org/trac/boost/changeset/67039
Log:
Fixed process_jam_log for Boost.Filesystem v3
Text files modified:
trunk/tools/regression/src/process_jam_log.cpp | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Modified: trunk/tools/regression/src/process_jam_log.cpp
==============================================================================
--- trunk/tools/regression/src/process_jam_log.cpp (original)
+++ trunk/tools/regression/src/process_jam_log.cpp 2010-12-05 15:40:41 EST (Sun, 05 Dec 2010)
@@ -6,6 +6,8 @@
// See http://www.boost.org/tools/regression for documentation.
+#define BOOST_FILESYSTEM_VERSION 3
+
#include <boost/config/warning_disable.hpp>
#include "detail/tiny_xml.hpp"
@@ -613,7 +615,7 @@
std::cout << "Abort: option --boost-root requires a directory argument\n";
std::exit(1);
}
- boost_root = fs::path( argv[1], fs::native );
+ boost_root = fs::path( argv[1] );
if ( !boost_root.is_complete() )
boost_root = ( fs::initial_path() / boost_root ).normalize();
@@ -627,7 +629,7 @@
std::cout << "Abort: option --locate-root requires a directory argument\n";
std::exit(1);
}
- locate_root = fs::path( argv[1], fs::native );
+ locate_root = fs::path( argv[1] );
--argc; ++argv;
}
else if ( std::strcmp( argv[1], "--input-file" ) == 0 )
@@ -648,7 +650,7 @@
}
else
{
- locate_root = fs::path( argv[1], fs::native );
+ locate_root = fs::path( argv[1] );
--argc; ++argv;
}
}
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