mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
14 lines
275 B
C++
14 lines
275 B
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#include "absl-flat_hash_map.hh"
|
|
|
|
size_t sstring_hash::operator()(std::string_view v) const noexcept {
|
|
return absl::Hash<std::string_view>{}(v);
|
|
}
|