cyclegraph: expand template usage
[c11tester.git] / model.h
diff --git a/model.h b/model.h
index c76a28972bf4e6f9fac715386a0a69cb1f4956e3..f8c2bc867946dc255b0cf2946e9c8f85c422b4d2 100644 (file)
--- a/model.h
+++ b/model.h
@@ -182,8 +182,10 @@ private:
        ModelAction * get_last_unlock(ModelAction *curr) const;
        void build_reads_from_past(ModelAction *curr);
        ModelAction * process_rmw(ModelAction *curr);
-       void post_r_modification_order(ModelAction *curr, const ModelAction *rf);
-       bool r_modification_order(ModelAction *curr, const ModelAction *rf);
+
+       template <typename rf_type>
+       bool r_modification_order(ModelAction *curr, const rf_type *rf);
+
        bool w_modification_order(ModelAction *curr);
        void get_release_seq_heads(ModelAction *acquire, ModelAction *read, rel_heads_list_t *release_heads);
        bool release_seq_heads(const ModelAction *rf, rel_heads_list_t *release_heads, struct release_seq *pending) const;