diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-06-03 17:42:08 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-06-03 17:42:08 +0300 |
commit | d49a65fa7153aaade24d02b3af5fc21d4bf7dd79 (patch) | |
tree | bdb99288ad5301b999d8a5ebd2543e3e8155610f | |
parent | b8746737629da7adcb9249962c642eceeb3a832f (diff) |
Fix missing for Windows path::traits alias renaming
-rw-r--r-- | bpkg/archive.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/archive.cxx b/bpkg/archive.cxx index 917bdf5..f4a6405 100644 --- a/bpkg/archive.cxx +++ b/bpkg/archive.cxx @@ -30,7 +30,7 @@ namespace bpkg static inline bool bsdtar (const char* p) { - const char* l (path::traits::find_leaf (p)); + const char* l (path::traits_type::find_leaf (p)); return l != nullptr && casecmp (l, "bsdtar", 6) == 0; } #endif |