diff options
author | tastytea | 2020-01-16 19:13:21 +0100 |
---|---|---|
committer | tastytea | 2020-01-17 17:30:31 +0100 |
commit | c75aefbe2a1a74dec6acd6e7b5239f6304185413 (patch) | |
tree | baa00f29bdc4cc9fca8e42d5e727255310f22889 | |
parent | 393c179c00b60eb5d4ed18cea93c26f305da9677 (diff) | |
download | mastodonpp-c75aefbe2a1a74dec6acd6e7b5239f6304185413.tar mastodonpp-c75aefbe2a1a74dec6acd6e7b5239f6304185413.tar.gz mastodonpp-c75aefbe2a1a74dec6acd6e7b5239f6304185413.zip |
Fix header names in documentation.
-rw-r--r-- | include/helpers.hpp | 2 | ||||
-rw-r--r-- | include/mastodonpp.hpp | 4 | ||||
-rw-r--r-- | include/types.hpp | 5 |
3 files changed, 6 insertions, 5 deletions
diff --git a/include/helpers.hpp b/include/helpers.hpp index 85b4742..fb90805 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -20,6 +20,8 @@ #include <string> #include <string_view> +//! @headerfile helpers.hpp mastodonpp/helpers.hpp + namespace mastodonpp { diff --git a/include/mastodonpp.hpp b/include/mastodonpp.hpp index 9769a3f..1b3055b 100644 --- a/include/mastodonpp.hpp +++ b/include/mastodonpp.hpp @@ -25,8 +25,6 @@ #include "types.hpp" /*! - * @headerfile mastodonpp.hpp mastodonpp/mastodonpp.hpp - * * @mainpage mastodonpp Reference * * @section using Using the library @@ -114,6 +112,8 @@ * @brief C++ wrapper for the Mastodon %API. * * @since 0.1.0 + * + * @headerfile mastodonpp.hpp mastodonpp/mastodonpp.hpp */ namespace mastodonpp {} // namespace mastodonpp diff --git a/include/types.hpp b/include/types.hpp index 46d3788..aebb25d 100644 --- a/include/types.hpp +++ b/include/types.hpp @@ -75,9 +75,6 @@ using parameterpair = * @brief Return type for Request%s. * * @since 0.1.0 - * - * @headerfile answer.hpp mastodonpp/answer.hpp - * */ struct answer_type { @@ -88,6 +85,8 @@ struct answer_type * [libcurl-errors(3)](https://curl.haxx.se/libcurl/c/libcurl-errors.html). * * @since 0.1.0 + * + * @headerfile types.hpp mastodonpp/types.hpp */ uint8_t curl_error_code{0}; |