summaryrefslogtreecommitdiff
path: root/src/mongo/db/stats/timer_stats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/stats/timer_stats.h')
-rw-r--r--src/mongo/db/stats/timer_stats.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/stats/timer_stats.h b/src/mongo/db/stats/timer_stats.h
index f1153f90ba5..31cbfeba9cb 100644
--- a/src/mongo/db/stats/timer_stats.h
+++ b/src/mongo/db/stats/timer_stats.h
@@ -58,8 +58,8 @@ public:
}
private:
- AtomicInt64 _num;
- AtomicInt64 _totalMillis;
+ AtomicWord<long long> _num;
+ AtomicWord<long long> _totalMillis;
};
/**