X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=action.cc;h=5d726a2a0514f1c63c66fc3604ec8409fe0ba8cb;hb=57d7975634e97da2d32f95054dccf40ca871e558;hp=205bedbf6f12806835a503975e95709162630070;hpb=0accacf66b9f7bb4479205a0840f208dd8da6960;p=model-checker.git diff --git a/action.cc b/action.cc index 205bedb..5d726a2 100644 --- a/action.cc +++ b/action.cc @@ -168,7 +168,7 @@ void ModelAction::read_from(const ModelAction *act) ASSERT(cv); reads_from = act; if (act != NULL && this->is_acquire()) { - std::vector release_heads; + std::vector< const ModelAction *, MyAlloc > release_heads; model->get_release_seq_heads(this, &release_heads); for (unsigned int i = 0; i < release_heads.size(); i++) synchronize_with(release_heads[i]);