mirror of
https://github.com/avast/retdec.git
synced 2024-11-23 13:00:13 +00:00
Fix warnings in make doc
Remove empty return types from doxygen comments to fix warnings.
This commit is contained in:
parent
a7574e14b8
commit
616d0cef1e
@ -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()
|
||||
{
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
|
@ -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()
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user