diff options
Diffstat (limited to 'Museum.cpp')
-rw-r--r-- | Museum.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ void Museum::work() { auto next = chrono::steady_clock::now() + this->tick_interval; this->update(); + printf("%lu artists\n", this->people.get_artists().size()); this_thread::sleep_until(next); } } |