Skip to content
Snippets Groups Projects
Commit dd1c5a40 authored by Franck Dary's avatar Franck Dary
Browse files

Ignored compiler warning

parent d92e5f0f
No related branches found
No related tags found
No related merge requests found
...@@ -1147,7 +1147,10 @@ void ActionBank::removeCharFromBuffer(Config & config, const std::string & tapeN ...@@ -1147,7 +1147,10 @@ void ActionBank::removeCharFromBuffer(Config & config, const std::string & tapeN
std::string suffix = std::string(config.rawInput.begin()+config.rawInputHeadIndex, config.rawInput.begin()+config.rawInputHeadIndex+util::getEndIndexOfNthSymbolFrom(config.rawInput.begin()+config.rawInputHeadIndex,config.rawInput.end(), 0)); std::string suffix = std::string(config.rawInput.begin()+config.rawInputHeadIndex, config.rawInput.begin()+config.rawInputHeadIndex+util::getEndIndexOfNthSymbolFrom(config.rawInput.begin()+config.rawInputHeadIndex,config.rawInput.end(), 0));
for (char c : suffix) for (char c : suffix)
{
(void)c;
from.pop_back(); from.pop_back();
}
tape.setHyp(relativeIndex, from); tape.setHyp(relativeIndex, from);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment