MCPcopy Create free account
hub / github.com/ElementsProject/elements / path

Method path

src/fs.h:35–35  ·  view source on GitHub ↗

Allow path objects arguments for compatibility.

Source from the content-addressed store, hash-verified

33
34 // Allow path objects arguments for compatibility.
35 path(std::filesystem::path path) : std::filesystem::path::path(std::move(path)) {}
36 path& operator=(std::filesystem::path path) { std::filesystem::path::operator=(std::move(path)); return *this; }
37 path& operator/=(std::filesystem::path path) { std::filesystem::path::operator/=(std::move(path)); return *this; }
38

Callers 3

ListDatabasesFunction · 0.80
parseBitcoinURIFunction · 0.80
CleanupBlockRevFilesFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected