Remove unneeded "hex" method.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-08-06 13:15:39 +01:00
parent 9f404d46a4
commit 03975bd76b
2 changed files with 0 additions and 11 deletions

View File

@ -26,12 +26,3 @@ void Fuse::RegisterState::readInternal(std::ifstream& file) {
file >> tstates;
file >> std::hex;
}
std::string Fuse::RegisterState::hex(int value) {
std::ostringstream output;
output << std::hex
<< std::setw(4)
<< std::setfill('0')
<< value;
return output.str();
}

View File

@ -24,7 +24,5 @@ namespace Fuse {
private:
void readInternal(std::ifstream& file);
void readExternal(std::ifstream& file);
static std::string hex(int value);
};
}