The following command had been executed to get the list of headers that did not contain '#pragma once': 'grep -rnw . -e "#pragma once" --include *.hh -L' This change adds missing include guard to headers that did not contain any guard. Signed-off-by: Patryk Wrobel <patryk.wrobel@scylladb.com> Closes scylladb/scylladb#19626
18 lines
299 B
C++
18 lines
299 B
C++
/*
|
|
* Copyright (C) 2021-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace tools {
|
|
|
|
int scylla_types_main(int argc, char** argv);
|
|
int scylla_sstable_main(int argc, char** argv);
|
|
int scylla_nodetool_main(int argc, char** argv);
|
|
|
|
} // namespace tools
|