Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-15 20:58:39 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-15 20:58:39 +0300
commit17caecec978dff884dee67085b5dd7d9d4b80f75 (patch)
tree5a38c45128173dd575ef15156f22d73af82a175d /include/llfio/v2.0/path_handle.hpp
parent02fbf668fc9c5a0e83694d005fc8c86f750e915f (diff)
Fix symbol clash due to lack of proper marking up path_handle::exists().
Diffstat (limited to 'include/llfio/v2.0/path_handle.hpp')
-rw-r--r--include/llfio/v2.0/path_handle.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llfio/v2.0/path_handle.hpp b/include/llfio/v2.0/path_handle.hpp
index e1df68d5..f246c30a 100644
--- a/include/llfio/v2.0/path_handle.hpp
+++ b/include/llfio/v2.0/path_handle.hpp
@@ -113,7 +113,7 @@ public:
a subsequent file handle open may fail.
*/
LLFIO_MAKE_FREE_FUNCTION
- result<bool> exists(path_view_type path) const noexcept;
+ LLFIO_HEADERS_ONLY_MEMFUNC_SPEC result<bool> exists(path_view_type path) const noexcept;
//! \overload
LLFIO_MAKE_FREE_FUNCTION
static inline result<bool> exists(const path_handle &base, path_view_type path) noexcept { return base.exists(path); }