diff options
author | David Robillard <d@drobilla.net> | 2023-01-08 20:13:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-08 22:32:09 -0500 |
commit | 87af385d3846d83a6e45f92c391265548a225964 (patch) | |
tree | 372dfa4057b1f1411778a676b437ef0d81a46491 /bindings/cpp/include/pugl | |
parent | 5ee8c8f69338870e8062782dfcc08f60d455eb35 (diff) | |
download | pugl-87af385d3846d83a6e45f92c391265548a225964.tar.gz pugl-87af385d3846d83a6e45f92c391265548a225964.tar.bz2 pugl-87af385d3846d83a6e45f92c391265548a225964.zip |
Fix Doxygen errors
Diffstat (limited to 'bindings/cpp/include/pugl')
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 6 |
1 files changed, 3 insertions, 3 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) == |