aboutsummaryrefslogtreecommitdiffstats
path: root/include/pugl/pugl_gl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-10-21 21:23:20 +0200
committerDavid Robillard <d@drobilla.net>2020-10-21 21:23:37 +0200
commit4535f74f63f21ca6c51ca8e2d0081d7add34dcb7 (patch)
tree9ef3f3a44b0ec245dcde72fb67d65237559902fd /include/pugl/pugl_gl.hpp
parentc6be2e43358fccf9b8e89f9ad9f55ff57fbbeb3e (diff)
downloadpugl-4535f74f63f21ca6c51ca8e2d0081d7add34dcb7.tar.gz
pugl-4535f74f63f21ca6c51ca8e2d0081d7add34dcb7.tar.bz2
pugl-4535f74f63f21ca6c51ca8e2d0081d7add34dcb7.zip
Make backend function wrappers noexcept
Diffstat (limited to 'include/pugl/pugl_gl.hpp')
-rw-r--r--include/pugl/pugl_gl.hpp4
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();
}