aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/cpp/include/pugl/pugl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-10-07 15:03:16 -0400
committerDavid Robillard <d@drobilla.net>2022-10-07 15:03:16 -0400
commit2be57130876429076a9ec407ffc2153806faaf22 (patch)
treee968ae4f291f0fb062d6f92a9b387b3b8551bc47 /bindings/cpp/include/pugl/pugl.hpp
parentea83b3051f90b21eda41d0839b3ed92d734f3754 (diff)
downloadpugl-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/cpp/include/pugl/pugl.hpp')
-rw-r--r--bindings/cpp/include/pugl/pugl.hpp6
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;