diff options
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 6 | ||||
-rw-r--r-- | doc/cpp/Doxyfile.in | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index 88d8fd5..2f160fe 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -382,9 +382,9 @@ static_assert(static_cast<Cursor>(PUGL_CURSOR_UP_DOWN) == Cursor::upDown, ""); /// @copydoc PuglShowCommand enum class ShowCommand { - passive, ///< @copydoc PUGL_SHOW_PASSIVE, - raise, ///< @copydoc PUGL_SHOW_RAISE, - forceRaise, ///< @copydoc PUGL_SHOW_FORCE_RAISE, + passive, ///< @copydoc PUGL_SHOW_PASSIVE + raise, ///< @copydoc PUGL_SHOW_RAISE + forceRaise, ///< @copydoc PUGL_SHOW_FORCE_RAISE }; static_assert(static_cast<ShowCommand>(PUGL_SHOW_FORCE_RAISE) == diff --git a/doc/cpp/Doxyfile.in b/doc/cpp/Doxyfile.in index e4fc9ca..78ee4c4 100644 --- a/doc/cpp/Doxyfile.in +++ b/doc/cpp/Doxyfile.in @@ -28,9 +28,11 @@ SHOW_FILES = NO MACRO_EXPANSION = YES PREDEFINED = PUGL_API \ - PUGL_DISABLE_DEPRECATED \ PUGL_CONST_API= \ - PUGL_CONST_FUNC= + PUGL_CONST_FUNC= \ + PUGL_DISABLE_DEPRECATED \ + PUGL_MALLOC_API= \ + PUGL_MALLOC_FUNC= RECURSIVE = YES STRIP_FROM_PATH = @PUGL_SRCDIR@ |