diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 11:18:46 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 11:18:46 +0200 |
| commit | 6a6d0be0c659c28946c70a4774966ea9169acb25 (patch) | |
| tree | 0514faa91f48765d09bbad7d400162866c7161ad /core/src | |
| parent | 3f5499cebc06356ed99159be3fb9676292cf7b8b (diff) | |
| download | turns-6a6d0be0c659c28946c70a4774966ea9169acb25.tar.xz turns-6a6d0be0c659c28946c70a4774966ea9169acb25.zip | |
turns: update header sorting rules and reformat code
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/participant.cpp | 6 | ||||
| -rw-r--r-- | core/src/turn_order.cpp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/core/src/participant.cpp b/core/src/participant.cpp index 45b02bd..aa97e83 100644 --- a/core/src/participant.cpp +++ b/core/src/participant.cpp @@ -1,11 +1,11 @@ #include "turns/core/participant.hpp" -#include <typeinfo> -#include <utility> - #include <glibmm/class.h> #include <glibmm/refptr.h> +#include <typeinfo> +#include <utility> + namespace turns::core { auto participant::create(Glib::ustring name, float priority, core::disposition disposition) -> Glib::RefPtr<participant> diff --git a/core/src/turn_order.cpp b/core/src/turn_order.cpp index ae3511e..20eaa83 100644 --- a/core/src/turn_order.cpp +++ b/core/src/turn_order.cpp @@ -2,13 +2,13 @@ #include "turns/core/participant.hpp" +#include <glibmm/refptr.h> + #include <algorithm> #include <compare> #include <limits> #include <typeinfo> -#include <glibmm/refptr.h> - namespace turns::core { |
