Remove copy ctor of atomic counter on OS X

This is not present on any of the other platforms so it is not needed,
but it uses a removed method (to receive the value) so it won't compile.
This commit is contained in:
Roland Kaufmann
2015-01-01 10:46:35 +01:00
parent b25290bebd
commit e0da9a611f

View File

@@ -99,12 +99,6 @@ AtomicCounter::AtomicCounter(int initialValue)
}
AtomicCounter::AtomicCounter(const AtomicCounter& counter)
: m_counter(counter.value())
{
}
AtomicCounter::~AtomicCounter()
{
}