supress two compiler warnings

This commit is contained in:
vaclavt 2022-01-10 20:26:31 +01:00
parent 990d75cf7a
commit cfb0dc768d
2 changed files with 2 additions and 1 deletions

View File

@ -108,6 +108,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <strings.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>

View File

@ -79,7 +79,7 @@ void MlPerfMon::restore_callstack_position(size_t to_position) {
}
void MlPerfMon::clear_callstack() {
call_stack.empty();
bool e = call_stack.empty();
}
void MlPerfMon::print_results() const {