diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 19:51:04 +0000 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 19:51:04 +0000 | 
| commit | 38dfd42a0c0b3f719148f89659dd737d1b5be6d0 (patch) | |
| tree | c1fc4a2b389e46ee2cedbfb8db103f9729d16e9b | |
| parent | IceSpider 0.5 string_view updates (diff) | |
| download | gentoobrowse-38dfd42a0c0b3f719148f89659dd737d1b5be6d0.tar.bz2 gentoobrowse-38dfd42a0c0b3f719148f89659dd737d1b5be6d0.tar.xz gentoobrowse-38dfd42a0c0b3f719148f89659dd737d1b5be6d0.zip | |
Remove boost::filesystem in favour of std::filesystem
| -rw-r--r-- | gentoobrowse/src/Jamfile.jam | 6 | ||||
| -rw-r--r-- | gentoobrowse/src/test.cpp | 4 | 
2 files changed, 4 insertions, 6 deletions
| diff --git a/gentoobrowse/src/Jamfile.jam b/gentoobrowse/src/Jamfile.jam index 80fbed7..0c1f761 100644 --- a/gentoobrowse/src/Jamfile.jam +++ b/gentoobrowse/src/Jamfile.jam @@ -11,8 +11,7 @@ lib adhocutil ;  lib tidy ;  lib Ice : : <name>Ice++11 ;  lib pthread ; -lib boost_system ; -lib boost_filesystem ; +lib stdc++fs ;  lib slicer ;  lib slicer-json ;  lib slicer-xml ; @@ -42,7 +41,6 @@ lib icespider : :  	<library>Ice  	<library>pthread  	<library>slicer -	<library>boost_system  	;  alias gentoobrowse : @@ -80,7 +78,7 @@ run  	gentoobrowse  	: : :  	<slicer>yes -	<library>boost_filesystem +	<library>stdc++fs  	<library>tidy  	<library>../..//libxmlpp  	<library>icespider-testing diff --git a/gentoobrowse/src/test.cpp b/gentoobrowse/src/test.cpp index cd613ff..edb0731 100644 --- a/gentoobrowse/src/test.cpp +++ b/gentoobrowse/src/test.cpp @@ -3,7 +3,7 @@  #include <core.h>  #include <definedDirs.h> -#include <boost/filesystem/operations.hpp> +#include <filesystem>  #include <testRequest.h>  #include <tidy.h>  #include <libxml++/parsers/domparser.h> @@ -104,7 +104,7 @@ class ChromiumRequestAtom : public ChromiumRequest {  BOOST_AUTO_TEST_CASE( cd )  { -	boost::filesystem::current_path(rootDir.parent_path()); +	std::filesystem::current_path(rootDir.parent_path());  }  BOOST_FIXTURE_TEST_SUITE(ta, CoreWithDefaultRouter); | 
