Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doxygen warnings #2443

Merged
merged 2 commits into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "BitShares-Core"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "5.2.0"
PROJECT_NUMBER = "5.2.1"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions libraries/app/application_impl.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ class application_impl : public net::node_delegate, public std::enable_shared_fr
void startup_plugins() const;
void shutdown_plugins() const;

/// Initialize genesis state. Called by @ref open_chain_database.
/// Initialize genesis state. Called by open_chain_database().
graphene::chain::genesis_state_type initialize_genesis_state() const;
/// Open the chain database. Called by @ref startup.
void open_chain_database() const;

friend graphene::app::application;
friend class graphene::app::application;

application& _self;

Expand Down