Fix warnings in make doc

Remove empty return types from doxygen comments to fix warnings.
This commit is contained in:
TAKANO Mitsuhiro 2023-08-07 18:24:40 +09:00 committed by Peter Matula
parent a7574e14b8
commit 616d0cef1e
5 changed files with 0 additions and 6 deletions

View File

@ -21,7 +21,6 @@ namespace bin2llvmir {
/**
* Initialize capstone2llvmir translator according to the architecture of
* file to decompile.
* @return @c True if error, @c false otherwise.
*/
void Decoder::initTranslator()
{

View File

@ -44,7 +44,6 @@ bool IdiomsAbstract::findBranchDependingOn(llvm::BranchInst ** br, llvm::BasicBl
*
* @param val instruction value to look for
* @param bb BasicBlock to erase instruction from
* @return void
*/
void IdiomsAbstract::eraseInstFromBasicBlock(llvm::Value * val, llvm::BasicBlock * bb) {
for (llvm::BasicBlock::iterator end = bb->end(), i = bb->begin(); i != end; ++i) {

View File

@ -476,7 +476,6 @@ void Parameters::fixRelativePaths(const std::string& configPath)
/**
* Returns JSON object (associative array) holding parameters information.
* @return JSON object.
*/
template <typename Writer>
void Parameters::serialize(Writer& writer) const

View File

@ -585,8 +585,6 @@ bool Heuristics::parseOpen64Comment(const std::string &record)
/**
* Try to detect used compiler based on content of comment sections
* @return @c true if used compiler was successfully detected,
* @c false otherwise
*/
void Heuristics::getCommentSectionsHeuristics()
{

View File

@ -1342,7 +1342,6 @@ std::string FileInformation::getDepsListFailedToLoad() const
/**
* Sets the name of the dependency file that failed to load
* @return Nothing
*/
void FileInformation::setDepsListFailedToLoad(const std::string & depsList)
{