summaryrefslogtreecommitdiff
path: root/library/statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/statistics.h')
-rw-r--r--library/statistics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/statistics.h b/library/statistics.h
index 0ec82c14..cfa3e07c 100644
--- a/library/statistics.h
+++ b/library/statistics.h
@@ -35,7 +35,7 @@ private:
};
std::vector<StatEntry> data;
- std::auto_ptr<wxStopWatch> timer;
+ std::unique_ptr<wxStopWatch> timer;
};
bgstack15