Removed a debug output

This commit is contained in:
Yessiest 2022-04-09 23:21:35 +04:00
parent 5e11056311
commit 979f5959d2
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ const char* qalculate(const char* input, bool exact_mode) {
}
Output = c->calculateAndPrint(Input,2000,default_user_evaluation_options);
delete c;
std::cout << Output << std::endl;
char * output = new char [Output.length()+1];
Output.copy(output,Output.length());
output[Output.length()] = "\0"[0];