Remove debug output

This commit is contained in:
Serge Lamikhov-Center 2021-09-19 23:49:27 +03:00
parent 511086598a
commit 6da283b3f4

View File

@ -190,8 +190,6 @@ class address_translator
for ( auto& t : translation ) {
if ( t.map_to <= value &&
( ( value - t.map_to ) < ( t.end - t.start ) ) ) {
std::cout << std::hex << t.start - t.map_to + value << " "
<< value << std::endl;
return t.start - t.map_to + value;
}
}