You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ENT-12650 Use std::filesystem by default (#5)
To help move forward switch to using C++17 as target and use std
filesystem that comes with it. Add USE_BOOST_FILESYSTEM that will use
boost::filesystem (as previous) in case, but that defaults OFF. Note
change in API to pass paths by std::string so whichever filesystem is in
use does not bother the calling code.
ENT-3325 Further C++17 fixes (#4)
Remove uses of std::unary_function - this was deprecated at C++11
but has been formally removed at C++17. Seems the use was basically
redundant and can just be removed.
ENT-3325 Further C++17 fixes (#4)
Remove uses of std::unary_function - this was deprecated at C++11
but has been formally removed at C++17. Seems the use was basically
redundant and can just be removed.
ENT-3325 Further C++17 fixes
Remove uses of std::unary_function - this was deprecated at C++11
but has been formally removed at C++17. Seems the call was basically
redundant and can just be removed.