From c399a44cb63c43c83c11fe6cfab02889896ecff1 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Tue, 19 Feb 2013 23:30:31 -0800 Subject: [PATCH] model/action: move action_list_t to model.h action_list_t is only used by the ModelChecker class --- action.h | 2 -- model.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.h b/action.h index c39af5e..63c0375 100644 --- a/action.h +++ b/action.h @@ -193,6 +193,4 @@ private: bool sleep_flag; }; -typedef std::list< ModelAction *, SnapshotAlloc > action_list_t; - #endif /* __ACTION_H__ */ diff --git a/model.h b/model.h index cc4fe28..08bde0f 100644 --- a/model.h +++ b/model.h @@ -27,6 +27,8 @@ struct model_snapshot_members; /** @brief Shorthand for a list of release sequence heads */ typedef std::vector< const ModelAction *, ModelAlloc > rel_heads_list_t; +typedef std::list< ModelAction *, SnapshotAlloc > action_list_t; + /** * Model checker parameter structure. Holds run-time configuration options for * the model checker. -- 2.34.1