From: Brian Demsky Date: Wed, 6 Mar 2013 05:40:39 +0000 (-0800) Subject: add destructor so the spsc-queue will compile on MAC X-Git-Tag: oopsla2013~157 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker.git;a=commitdiff_plain;h=7ee05d0cce29addaf73326e0eeac08bc7eb39e79 add destructor so the spsc-queue will compile on MAC --- diff --git a/conditionvariable.cc b/conditionvariable.cc index f79cf2a..75af879 100644 --- a/conditionvariable.cc +++ b/conditionvariable.cc @@ -9,6 +9,10 @@ condition_variable::condition_variable() { } +condition_variable::~condition_variable() { + +} + void condition_variable::notify_one() { model->switch_to_master(new ModelAction(ATOMIC_NOTIFY_ONE, std::memory_order_seq_cst, this)); }