aboutsummaryrefslogtreecommitdiff
path: root/src/fs.h
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2022-01-19 15:21:25 -0500
committerAndrew Chow <achow101-github@achow101.com>2022-01-19 16:25:20 -0500
commitdc5d6b0d4793ca978f71f69ef7d6b818794676c2 (patch)
treeae4cce6b6e5dd19523db07264b53628ba70b0d39 /src/fs.h
parent869c6e23c5a63fa05a1e4ca1028aadc3fa8a7529 (diff)
downloadbitcoin-dc5d6b0d4793ca978f71f69ef7d6b818794676c2.tar.xz
fs: Make compatible with boost 1.78
Diffstat (limited to 'src/fs.h')
-rw-r--r--src/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs.h b/src/fs.h
index 9f18794539..bc36636084 100644
--- a/src/fs.h
+++ b/src/fs.h
@@ -88,7 +88,7 @@ static inline auto quoted(const std::string& s)
// Allow safe path append operations.
static inline path operator+(path p1, path p2)
{
- p1 += std::move(p2);
+ p1 += static_cast<boost::filesystem::path&&>(p2);
return p1;
}