mirror of
https://github.com/hyprwm/hyprutils.git
synced 2025-05-13 05:40:40 +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>
|
template <typename T>
|
||||||
class impl : public impl_base {
|
class impl : public impl_base {
|
||||||
public:
|
public:
|
||||||
impl(T* data, bool lock = true) noexcept : _data(data), _lockable(lock) {
|
impl(T* data, bool lock = true) noexcept : _lockable(lock), _data(data) {
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue