mirror of
https://github.com/google/benchmark.git
synced 2025-03-16 04:00:07 +08:00
12 lines
216 B
C++
12 lines
216 B
C++
|
#include "check.h"
|
||
|
|
||
|
namespace benchmark {
|
||
|
namespace internal {
|
||
|
|
||
|
static AbortHandlerT* handler = &std::abort;
|
||
|
|
||
|
AbortHandlerT*& GetAbortHandler() { return handler; }
|
||
|
|
||
|
} // namespace internal
|
||
|
} // namespace benchmark
|