mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-24 02:20:37 +00:00
19 lines
296 B
C++
19 lines
296 B
C++
/*
|
|
* Copyright 2023-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#include "utils/tagged_integer.hh"
|
|
|
|
namespace utils {
|
|
|
|
template<typename Tag, typename ValueType>
|
|
struct tagged_integer final {
|
|
ValueType value();
|
|
};
|
|
|
|
} // namespace utils
|