Skip to content

Commit 4311a1f

Browse files
authored
Merge pull request #2780 from bitshares/fix-doxygen
Fix Doxygen warnings
2 parents b9cabb9 + 1c68b64 commit 4311a1f

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

libraries/app/application.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ bool application_impl::is_plugin_enabled(const string& name) const
634634
return !(_active_plugins.find(name) == _active_plugins.end());
635635
}
636636

637-
/**
637+
/*
638638
* If delegate has the item, the network has no need to fetch it.
639639
*/
640640
bool application_impl::has_item(const net::item_id& id)
@@ -649,7 +649,7 @@ bool application_impl::has_item(const net::item_id& id)
649649
FC_CAPTURE_AND_RETHROW( (id) ) // GCOVR_EXCL_LINE
650650
}
651651

652-
/**
652+
/*
653653
* @brief allows the application to validate an item prior to broadcasting to peers.
654654
*
655655
* @param sync_mode true if the message was fetched through the sync process, false during normal operation
@@ -759,7 +759,7 @@ bool application_impl::is_included_block(const block_id_type& block_id)
759759
return block_id == block_id_in_preferred_chain;
760760
}
761761

762-
/**
762+
/*
763763
* Assuming all data elements are ordered in some way, this method should
764764
* return up to limit ids that occur *after* the last ID in synopsis that
765765
* we recognize.
@@ -816,7 +816,7 @@ std::vector<item_hash_t> application_impl::get_block_ids(const std::vector<item_
816816
return result;
817817
} FC_CAPTURE_AND_RETHROW( (blockchain_synopsis)(remaining_item_count)(limit) ) } // GCOVR_EXCL_LINE
818818

819-
/**
819+
/*
820820
* Given the hash of the requested data, fetch the body.
821821
*/
822822
message application_impl::get_item(const item_id& id)
@@ -840,7 +840,7 @@ chain_id_type application_impl::get_chain_id() const
840840
return _chain_db->get_chain_id();
841841
}
842842

843-
/**
843+
/*
844844
* Returns a synopsis of the blockchain used for syncing. This consists of a list of
845845
* block hashes at intervals exponentially increasing towards the genesis block.
846846
* When syncing to a peer, the peer uses this data to determine if we're on the same
@@ -1018,7 +1018,7 @@ std::vector<item_hash_t> application_impl::get_blockchain_synopsis(const item_ha
10181018
return synopsis;
10191019
} FC_CAPTURE_AND_RETHROW() } // GCOVR_EXCL_LINE
10201020

1021-
/**
1021+
/*
10221022
* Call this after the call to handle_message succeeds.
10231023
*
10241024
* @param item_type the type of the item we're synchronizing, will be the same as item passed to the sync_from() call
@@ -1030,7 +1030,7 @@ void application_impl::sync_status(uint32_t item_type, uint32_t item_count)
10301030
// any status reports to GUI go here
10311031
}
10321032

1033-
/**
1033+
/*
10341034
* Call any time the number of connected peers changes.
10351035
*/
10361036
void application_impl::connection_count_changed(uint32_t c)
@@ -1043,7 +1043,7 @@ uint32_t application_impl::get_block_number(const item_hash_t& block_id)
10431043
return block_header::num_from_id(block_id);
10441044
} FC_CAPTURE_AND_RETHROW( (block_id) ) } // GCOVR_EXCL_LINE
10451045

1046-
/**
1046+
/*
10471047
* Returns the time a block was produced (if block_id = 0, returns genesis time).
10481048
* If we don't know about the block, returns time_point_sec::min()
10491049
*/

libraries/protocol/include/graphene/protocol/operations.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ namespace graphene { namespace protocol {
133133
/* 77 */ limit_order_update_operation
134134
>;
135135

136-
/// @} // operations group
137-
138136
/**
139137
* Appends required authorites to the result vector. The authorities appended are not the
140138
* same as those returned by get_required_auth

0 commit comments

Comments
 (0)