fix build issue with non-atomic int64

This commit is contained in:
Arvid Norberg 2015-05-01 22:20:22 +00:00
parent e6049e6c10
commit a3a59496d8
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ namespace libtorrent
#else
// if the atomic type is't lock-free, use a single lock instead, for
// the whole array
mutex m_mutex;
mutable mutex m_mutex;
boost::int64_t m_stats_counter[num_counters];
#endif
};