aboutsummaryrefslogtreecommitdiff
path: root/src/thread_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread_manager.h')
-rw-r--r--src/thread_manager.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/thread_manager.h b/src/thread_manager.h
index 28e2dd5..819b3c4 100644
--- a/src/thread_manager.h
+++ b/src/thread_manager.h
@@ -36,7 +36,6 @@ class ThreadManager {
[this]() { return alive_threads_ == 0; });
}
- public:
struct Result {
IterationCount iterations = 0;
double real_time_used = 0;
@@ -44,8 +43,8 @@ class ThreadManager {
double manual_time_used = 0;
int64_t complexity_n = 0;
std::string report_label_;
- std::string error_message_;
- bool has_error_ = false;
+ std::string skip_message_;
+ internal::Skipped skipped_ = internal::NotSkipped;
UserCounters counters;
};
GUARDED_BY(GetBenchmarkMutex()) Result results;