diff options
author | bloodstalker <thabogre@gmail.com> | 2017-05-18 23:35:37 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-05-18 23:35:37 +0000 |
commit | bc66572a58b0648bad99782985e3cd6abce325cd (patch) | |
tree | bc3b08a5de8f9869cb4af862cfa86ed8f7aeea72 /bruiser | |
parent | changed a comment (diff) | |
download | mutator-bc66572a58b0648bad99782985e3cd6abce325cd.tar.gz mutator-bc66572a58b0648bad99782985e3cd6abce325cd.zip |
the history number is broken. commented it out til i fix it.
Diffstat (limited to 'bruiser')
-rw-r--r-- | bruiser/bruiser.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/bruiser/bruiser.cpp b/bruiser/bruiser.cpp index bb64a9b..c3731ff 100644 --- a/bruiser/bruiser.cpp +++ b/bruiser/bruiser.cpp @@ -919,14 +919,6 @@ int main(int argc, const char **argv) tempint++; } -#if 0 - unsigned int _cnt = 0; - for (auto &it : shHistory.History) - { - std::cout << _cnt << "." << it << "\n"; - _cnt++; - } -#endif continue; } @@ -950,6 +942,8 @@ int main(int argc, const char **argv) if (command[0] == '!') { + /*FIXME*/ +#if 0 int command_number; std::string cut_string; //std::cout << CYAN << command << "\n" << NORMAL; @@ -969,6 +963,7 @@ int main(int argc, const char **argv) { std::cout << CYAN << shHistory.History[command_number] << NORMAL; } +#endif continue; } |