diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-27 17:01:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-27 17:01:58 +0100 |
| commit | 14fa24a1aabda7925f4842ab7f7e13c1798182a4 (patch) | |
| tree | f766ce71fb4a8dbc958f599e04c9ceaf21aef2a9 /test/test.h | |
| parent | bc419bd953dc31184aa3f3a6a3c9b8693bc34b7c (diff) | |
Use boost filesystem.
Diffstat (limited to 'test/test.h')
| -rw-r--r-- | test/test.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test.h b/test/test.h index 8bc6e3d..9d43439 100644 --- a/test/test.h +++ b/test/test.h @@ -18,9 +18,8 @@ */ #include <string> +#include <boost/filesystem.hpp> -using std::string; +extern boost::filesystem::path private_test; -extern string private_test; - -void check_text (std::string a, std::string b); +void check_text (boost::filesystem::path a, boost::filesystem::path b); |
