aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/lower_case/lchash.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/digest/lower_case/lchash.h')
-rw-r--r--library/cpp/digest/lower_case/lchash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/digest/lower_case/lchash.h b/library/cpp/digest/lower_case/lchash.h
index 6cb109c2e9..6a287d9479 100644
--- a/library/cpp/digest/lower_case/lchash.h
+++ b/library/cpp/digest/lower_case/lchash.h
@@ -7,7 +7,7 @@
template <class T>
static inline T FnvCaseLess(const char* b, size_t l, T t = 0) noexcept {
- using TIter = TLowerCaseIterator<const char>;
+ using TIter = TLowerCaseIterator<const char>;
return FnvHash(TIter(b), TIter(b + l), t);
}