Skip to content

Commit 2fc825a

Browse files
committed
Use new Boost.Filesystem platform API macros.
1 parent d70b528 commit 2fc825a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/text_file_backend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ BOOST_LOG_ANONYMOUS_NAMESPACE {
7878
//! A possible Boost.Filesystem extension - renames or moves the file to the target storage
7979
inline void move_file(filesystem::path const& from, filesystem::path const& to)
8080
{
81-
#if defined(BOOST_WINDOWS_API)
81+
#if defined(BOOST_FILESYSTEM_WINDOWS_API)
8282
// On Windows MoveFile already does what we need
8383
filesystem::rename(from, to);
8484
#else

0 commit comments

Comments
 (0)