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>2021-02-23 14:28:58 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-02-23 14:28:58 +0300
commita74411eddb6401ab884c5f92cccc24b9a64a9e6f (patch)
tree104330604a2aac14d257b103a59ceab8d4e58086
parent74e710643944764a3548847322d6cb9a4a7ed5ab (diff)
Fix breakage caused by upstream changes to quickcpplib. De-CRLF cached filelist files.
-rw-r--r--include/llfio/revision.hpp6
-rw-r--r--include/llfio/v2.0/path_view.hpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llfio/revision.hpp b/include/llfio/revision.hpp
index 0002cc06..c3d97eb3 100644
--- a/include/llfio/revision.hpp
+++ b/include/llfio/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 LLFIO_PREVIOUS_COMMIT_REF 8a89e98108296dbceca12e1648f5bb4ce2ca2d01
-#define LLFIO_PREVIOUS_COMMIT_DATE "2021-02-04 09:26:19 +00:00"
-#define LLFIO_PREVIOUS_COMMIT_UNIQUE 8a89e981
+#define LLFIO_PREVIOUS_COMMIT_REF 74e710643944764a3548847322d6cb9a4a7ed5ab
+#define LLFIO_PREVIOUS_COMMIT_DATE "2021-02-23 11:27:11 +00:00"
+#define LLFIO_PREVIOUS_COMMIT_UNIQUE 74e71064
diff --git a/include/llfio/v2.0/path_view.hpp b/include/llfio/v2.0/path_view.hpp
index b1faf800..48618e3d 100644
--- a/include/llfio/v2.0/path_view.hpp
+++ b/include/llfio/v2.0/path_view.hpp
@@ -1468,7 +1468,7 @@ inline std::ostream &operator<<(std::ostream &s, const path_view_component &v)
{
if(v._passthrough)
{
- return s << '"' << QUICKCPPLIB_NAMESPACE::algorithm::string::to_hex_string({v._charstr, v._length}) << '"';
+ return s << '"' << QUICKCPPLIB_NAMESPACE::algorithm::string::to_hex_string(v._charstr, v._length) << '"';
}
v._invoke(detail::string_view_printer{s});
return s;