mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix build warnings and .gitignore.
* Comment out unused local function for both clang and g++. * Get rid of numerous Boost warnings for clang. * Remove some unused local variables. * Put TAGS into the .gitignore.
This commit is contained in:
committed by
Vinnie Falco
parent
ac3cf05f1a
commit
96e1ec6d31
@@ -651,10 +651,14 @@ bool SHAMap::hasLeafNode (uint256 const& tag, uint256 const& targetNodeHash)
|
||||
return false; // If this was a matching leaf, we would have caught it already
|
||||
}
|
||||
|
||||
static void addFPtoList (std::list<SHAMap::fetchPackEntry_t>& list, const uint256& hash, const Blob& blob)
|
||||
#if 0
|
||||
static
|
||||
void addFPtoList (std::list<SHAMap::fetchPackEntry_t>& list,
|
||||
const uint256& hash, const Blob& blob)
|
||||
{
|
||||
list.push_back (SHAMap::fetchPackEntry_t (hash, blob));
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
@param have A pointer to the map that the recipient already has (if any).
|
||||
|
||||
Reference in New Issue
Block a user