Files
ResInsight/ThirdParty/boost-Subset/libs/filesystem/test/issues/copy_file-compilation-error-2015-05-04.cpp
Magne Sjaastad 2b4efc4b5c #1398 Removed dependency on system boost, added subset of boost to ThirdParty
Added a subset of boost to ThirdParty folder. Code extracted from version boost version 1.59.0
2017-04-05 08:38:59 +02:00

14 lines
399 B
C++

// Rob Conde <rob.conde@ai-solutions.com> reports this fails
// to compile for Boost 1.58 with g++ 4.4.7 but is OK with FC++ 2013
#include "boost/filesystem/operations.hpp"
void myFunc()
{
using namespace boost::filesystem;
copy_option opt(copy_option::overwrite_if_exists);
copy_file(path("p1"),path("p2"),copy_option::overwrite_if_exists);
// copy_file(path("p1"),path("p2"),opt);
}