mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
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:
@@ -99,12 +99,6 @@ AtomicCounter::AtomicCounter(int initialValue)
|
||||
}
|
||||
|
||||
|
||||
AtomicCounter::AtomicCounter(const AtomicCounter& counter)
|
||||
: m_counter(counter.value())
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
AtomicCounter::~AtomicCounter()
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user