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
path: root/test
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-27 19:58:12 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-27 19:58:12 +0300
commit2e44e08645b43a06afcf9fa5f2fde5bc7026065e (patch)
tree48443e576075e22378ff8c4b378b7956ff936342 /test
parente96fbf229165851e32f322c1f2e9bf62c88a2854 (diff)
Refactored code to handle bitfield and undoer now living in Boost-lite, and child_process now lives in KernelTest.
Diffstat (limited to 'test')
-rw-r--r--test/tests/map_handle_create_close/runner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests/map_handle_create_close/runner.cpp b/test/tests/map_handle_create_close/runner.cpp
index ebb52aec..2bde75e8 100644
--- a/test/tests/map_handle_create_close/runner.cpp
+++ b/test/tests/map_handle_create_close/runner.cpp
@@ -67,7 +67,7 @@ template <class U> inline void map_handle_create_close_(U &&f)
if (testreturn)
maph = std::move(testreturn.get());
// Need to close the map and any backing file as otherwise filesystem_setup won't be able to clear up the working dir on Windows
- auto onexit = BOOST_AFIO_V2_NAMESPACE::detail::Undoer([&]{
+ auto onexit = BOOST_AFIO_V2_NAMESPACE::undoer([&]{
maph.close();
temph.close();
});