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:
m---------doc/html8
-rw-r--r--include/afio/revision.hpp6
m---------include/afio/v2.0/outcome0
m---------include/afio/v2.0/quickcpplib0
-rw-r--r--programs/key-value-store/main.cpp5
m---------test/kerneltest0
-rw-r--r--test/tests/shared_fs_mutex.cpp1
7 files changed, 12 insertions, 8 deletions
diff --git a/doc/html b/doc/html
-Subproject ca74fce5d4c6d0bc805e3138e091a04ccef61c0
+Subproject ecdb15482d922b67ba4344c67d4507ca1d6fc5d
diff --git a/include/afio/revision.hpp b/include/afio/revision.hpp
index c13cda51..45d685bb 100644
--- a/include/afio/revision.hpp
+++ b/include/afio/revision.hpp
@@ -1,4 +1,4 @@
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
-#define AFIO_PREVIOUS_COMMIT_REF 15bc5c77f7b8cf2ca91427b8af079abe08d48d57
-#define AFIO_PREVIOUS_COMMIT_DATE "2017-08-31 00:35:53 +00:00"
-#define AFIO_PREVIOUS_COMMIT_UNIQUE 15bc5c77
+#define AFIO_PREVIOUS_COMMIT_REF d3467dee8d5a34ce6ad2c501f7d09d82c9d2dd0e
+#define AFIO_PREVIOUS_COMMIT_DATE "2017-09-03 22:55:52 +00:00"
+#define AFIO_PREVIOUS_COMMIT_UNIQUE d3467dee
diff --git a/include/afio/v2.0/outcome b/include/afio/v2.0/outcome
-Subproject e147ff174cb83220f846e80ee74c679f8b48a33
+Subproject b727b2904545c22f018a869f5a75d304e177fa8
diff --git a/include/afio/v2.0/quickcpplib b/include/afio/v2.0/quickcpplib
-Subproject d35ae3295689448eeb9bfcda768a16c8c3bb43d
+Subproject bdd3338dc4978cc3b7b5234562ed91378c61e96
diff --git a/programs/key-value-store/main.cpp b/programs/key-value-store/main.cpp
index b5081e88..aa8a608f 100644
--- a/programs/key-value-store/main.cpp
+++ b/programs/key-value-store/main.cpp
@@ -31,7 +31,10 @@ int main()
#endif
try
{
- AFIO_V2_NAMESPACE::filesystem::remove_all("teststore");
+ {
+ std::error_code ec;
+ AFIO_V2_NAMESPACE::filesystem::remove_all("teststore", ec);
+ }
key_value_store::basic_key_value_store store("teststore", 2000000);
{
key_value_store::transaction tr(store);
diff --git a/test/kerneltest b/test/kerneltest
-Subproject f44c95f95fa5fc33c2890c290f68ae057dcde79
+Subproject 5c4b6b6fc10ebae52cba954f9821d28083fe3e3
diff --git a/test/tests/shared_fs_mutex.cpp b/test/tests/shared_fs_mutex.cpp
index 8c1e6af7..b9369fe3 100644
--- a/test/tests/shared_fs_mutex.cpp
+++ b/test/tests/shared_fs_mutex.cpp
@@ -34,6 +34,7 @@ KERNELTEST_TEST_KERNEL(unit, afio, shared_fs_mutex, entity_endian, "Tests that a
#include <codecvt>
#include <condition_variable>
+#include <future>
#include <unordered_map>
KERNELTEST_V1_NAMESPACE_BEGIN