From c108b7d5709061ced258f5106ac67ada91242fc3 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Mon, 15 Apr 2013 18:19:10 -0700 Subject: [PATCH] common: drop model_print_summary() This can cause problems if we include it in the output of ASSERT(). --- common.cc | 5 ----- common.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/common.cc b/common.cc index 338058d..9cb7239 100644 --- a/common.cc +++ b/common.cc @@ -42,11 +42,6 @@ void print_trace(void) #endif /* CONFIG_STACKTRACE */ } -void model_print_summary(void) -{ - model->print_summary(); -} - void assert_hook(void) { model_print("Add breakpoint to line %u in file %s.\n", __LINE__, __FILE__); diff --git a/common.h b/common.h index 1071135..367dc6b 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,6 @@ do { \ if (!(expr)) { \ fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \ print_trace(); \ - model_print_summary(); \ assert_hook(); \ exit(EXIT_FAILURE); \ } \ @@ -43,5 +42,4 @@ do { \ #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__) void print_trace(void); -void model_print_summary(void); #endif /* __COMMON_H__ */ -- 2.34.1