diff options
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index 2119bda..109e947 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -360,10 +360,10 @@ enum class ViewHint { resizable, ///< @copydoc PUGL_RESIZABLE ignoreKeyRepeat, ///< @copydoc PUGL_IGNORE_KEY_REPEAT refreshRate, ///< @copydoc PUGL_REFRESH_RATE + viewType, ///< @copydoc PUGL_VIEW_TYPE }; -static_assert(static_cast<ViewHint>(PUGL_REFRESH_RATE) == ViewHint::refreshRate, - ""); +static_assert(static_cast<ViewHint>(PUGL_VIEW_TYPE) == ViewHint::viewType, ""); using ViewHintValue = PuglViewHintValue; ///< @copydoc PuglViewHintValue |