blob: 258acebcff3dfafafe8cf89b18502471ea5ccea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "turns/core/init.hpp"
#include "turns/core/participant.hpp"
#include "turns/core/turn_order.hpp"
namespace turns::core
{
auto register_types() -> void
{
static_cast<void>(participant{});
static_cast<void>(turn_order{});
}
} // namespace turns::core
|