diff options
author | David Robillard <d@drobilla.net> | 2024-10-01 17:41:03 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-01 17:41:03 -0400 |
commit | fed2de072f1d0ce59971c4da228bd5f057274c6e (patch) | |
tree | f37ba3db42ac9a177103eea604c9ecb2468ad5fd | |
parent | f7b3fe466e7c443b4ec60901899fc538b66c0cc1 (diff) | |
download | pugl-fed2de072f1d0ce59971c4da228bd5f057274c6e.tar.gz pugl-fed2de072f1d0ce59971c4da228bd5f057274c6e.tar.bz2 pugl-fed2de072f1d0ce59971c4da228bd5f057274c6e.zip |
Remove redundant "inline" specifier
-rw-r--r-- | examples/sybok.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/sybok.hpp b/examples/sybok.hpp index 49abdf0..db0cdd5 100644 --- a/examples/sybok.hpp +++ b/examples/sybok.hpp @@ -1751,10 +1751,10 @@ public: private: template<class T> - static inline VkResult wrapResult(const VkResult r, - const typename T::Handle handle, - typename T::Deleter&& deleter, - T& result) noexcept + static VkResult wrapResult(const VkResult r, + const typename T::Handle handle, + typename T::Deleter&& deleter, + T& result) noexcept { if (r) { return r; |