mirror of
https://github.com/hyprwm/hyprutils.git
synced 2025-05-12 21:30:36 +01:00
implbase: fix wreorder
This fixes all reorder warnings... uh...
This commit is contained in:
parent
ecd20db0e1
commit
373b967c2f
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ namespace Hyprutils {
|
|||
template <typename T>
|
||||
class impl : public impl_base {
|
||||
public:
|
||||
impl(T* data, bool lock = true) noexcept : _data(data), _lockable(lock) {
|
||||
impl(T* data, bool lock = true) noexcept : _lockable(lock), _data(data) {
|
||||
;
|
||||
}
|
||||
|
||||
|
@ -116,4 +116,4 @@ namespace Hyprutils {
|
|||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue