diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 15:03:16 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 15:03:16 -0400 |
commit | 2be57130876429076a9ec407ffc2153806faaf22 (patch) | |
tree | e968ae4f291f0fb062d6f92a9b387b3b8551bc47 /bindings | |
parent | ea83b3051f90b21eda41d0839b3ed92d734f3754 (diff) | |
download | pugl-2be57130876429076a9ec407ffc2153806faaf22.tar.gz pugl-2be57130876429076a9ec407ffc2153806faaf22.tar.bz2 pugl-2be57130876429076a9ec407ffc2153806faaf22.zip |
Fix whitespace
Support for deleted method syntax has improved in clang-format 14.
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index e80408c..87cd378 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -34,7 +34,7 @@ template<class T, FreeFunc<T> Free> class Wrapper { public: - Wrapper(const Wrapper&) = delete; + Wrapper(const Wrapper&) = delete; Wrapper& operator=(const Wrapper&) = delete; Wrapper(Wrapper&& wrapper) noexcept @@ -281,10 +281,10 @@ private: class World : public detail::Wrapper<PuglWorld, puglFreeWorld> { public: - World(const World&) = delete; + World(const World&) = delete; World& operator=(const World&) = delete; - World(World&&) = delete; + World(World&&) = delete; World& operator=(World&&) = delete; ~World() = default; |