mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 04:06:59 +00:00
After fcb8d040 ("treewide: use Software Package Data Exchange
(SPDX) license identifiers"), many dual-licensed files were
left with empty comments on top. Remove them to avoid visual
noise.
Closes #10562
29 lines
536 B
C++
29 lines
536 B
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#include "cql3/role_name.hh"
|
|
|
|
#include <algorithm>
|
|
|
|
namespace cql3 {
|
|
|
|
role_name::role_name(sstring name, preserve_role_case p) : _name(std::move(name)) {
|
|
if (p == preserve_role_case::no) {
|
|
std::transform(_name.begin(), _name.end(), _name.begin(), &::tolower);
|
|
}
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const role_name& r) {
|
|
os << r.to_string();
|
|
return os;
|
|
}
|
|
|
|
}
|