diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Serialiser.cpp | 3 | ||||
-rw-r--r-- | src/gui/GraphTreeWindow.hpp | 3 | ||||
-rw-r--r-- | src/server/LV2Block.hpp | 3 | ||||
-rw-r--r-- | src/server/Load.hpp | 3 | ||||
-rw-r--r-- | src/server/RunContext.cpp | 3 | ||||
-rw-r--r-- | src/server/State.hpp | 3 |
6 files changed, 6 insertions, 12 deletions
diff --git a/src/Serialiser.cpp b/src/Serialiser.cpp index b0d41dd2..21d8286f 100644 --- a/src/Serialiser.cpp +++ b/src/Serialiser.cpp @@ -53,8 +53,7 @@ namespace ingen { -struct Serialiser::Impl -{ +struct Serialiser::Impl { explicit Impl(World& world) : _root_path("/") , _world(world) diff --git a/src/gui/GraphTreeWindow.hpp b/src/gui/GraphTreeWindow.hpp index 7c2a67b9..8534d66c 100644 --- a/src/gui/GraphTreeWindow.hpp +++ b/src/gui/GraphTreeWindow.hpp @@ -89,8 +89,7 @@ protected: GraphTreeView* _graphs_treeview{nullptr}; - struct GraphTreeModelColumns : public Gtk::TreeModel::ColumnRecord - { + struct GraphTreeModelColumns : public Gtk::TreeModel::ColumnRecord { GraphTreeModelColumns() { add(name_col); add(enabled_col); diff --git a/src/server/LV2Block.hpp b/src/server/LV2Block.hpp index ec0b863b..8e87acda 100644 --- a/src/server/LV2Block.hpp +++ b/src/server/LV2Block.hpp @@ -151,8 +151,7 @@ protected: struct Response : public raul::Maid::Disposable , public raul::Noncopyable - , public boost::intrusive::slist_base_hook<> - { + , public boost::intrusive::slist_base_hook<> { inline Response(uint32_t s, const void* d) : size(s) , data(malloc(s)) diff --git a/src/server/Load.hpp b/src/server/Load.hpp index f69d0659..4a30dd58 100644 --- a/src/server/Load.hpp +++ b/src/server/Load.hpp @@ -24,8 +24,7 @@ namespace ingen { namespace server { -struct Load -{ +struct Load { void update(uint64_t time, uint64_t available) { const uint64_t load = time * 100 / available; if (load < min) { diff --git a/src/server/RunContext.cpp b/src/server/RunContext.cpp index 05f57bf5..1e5b3657 100644 --- a/src/server/RunContext.cpp +++ b/src/server/RunContext.cpp @@ -40,8 +40,7 @@ namespace ingen { namespace server { -struct Notification -{ +struct Notification { explicit inline Notification(PortImpl* p = nullptr, FrameTime f = 0, LV2_URID k = 0, diff --git a/src/server/State.hpp b/src/server/State.hpp index b5a3f7c0..201c6b86 100644 --- a/src/server/State.hpp +++ b/src/server/State.hpp @@ -24,8 +24,7 @@ namespace ingen { namespace server { -struct StateDeleter -{ +struct StateDeleter { void operator()(LilvState* state) { lilv_state_free(state); } }; |