diff options
author | B Stack <bgstack15@gmail.com> | 2021-01-04 08:08:11 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2021-01-04 08:08:11 -0500 |
commit | f9a264860c23b8381adbc0b9766e1b677a07da78 (patch) | |
tree | 494f9fc32eeee34c6c46611ae0137c25a79517a4 /zen/string_traits.h | |
parent | Merge branch '11.4' into 'master' (diff) | |
download | FreeFileSync-f9a264860c23b8381adbc0b9766e1b677a07da78.tar.gz FreeFileSync-f9a264860c23b8381adbc0b9766e1b677a07da78.tar.bz2 FreeFileSync-f9a264860c23b8381adbc0b9766e1b677a07da78.zip |
add upstream 11.5
Diffstat (limited to 'zen/string_traits.h')
-rw-r--r-- | zen/string_traits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/string_traits.h b/zen/string_traits.h index 333c92c7..d9ce589c 100644 --- a/zen/string_traits.h +++ b/zen/string_traits.h @@ -36,7 +36,7 @@ namespace zen //reference a sub-string for consumption by zen string_tools //=> std::string_view seems decent, but of course fucks up in one regard: construction -template <class Iterator> auto makeStringView(Iterator first, Iterator last); +template <class Iterator> auto makeStringView(Iterator first, Iterator last); //e.g. this constructor is not available (at least on clang) template <class Iterator> auto makeStringView(Iterator first, size_t len); |