diff options
Diffstat (limited to 'include/pugl/pugl_gl.hpp')
-rw-r--r-- | include/pugl/pugl_gl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pugl/pugl_gl.hpp b/include/pugl/pugl_gl.hpp index 4bc5bbd..b7c581e 100644 --- a/include/pugl/pugl_gl.hpp +++ b/include/pugl/pugl_gl.hpp @@ -39,14 +39,14 @@ using GlFunc = PuglGlFunc; /// @copydoc puglGetProcAddress static inline GlFunc -getProcAddress(const char* name) +getProcAddress(const char* name) noexcept { return puglGetProcAddress(name); } /// @copydoc puglGlBackend static inline const PuglBackend* -glBackend() +glBackend() noexcept { return puglGlBackend(); } |