blob: 3991248004639ef76bf82caf663953e45f89faf8 (
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
|