diff options
Diffstat (limited to 'project2/if.h')
-rw-r--r-- | project2/if.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/project2/if.h b/project2/if.h index 6482d7c..9c9acd8 100644 --- a/project2/if.h +++ b/project2/if.h @@ -14,7 +14,7 @@ class IfSet : public virtual IntrusivePtrBase { virtual const std::string & getName() const = 0; enum Mode { And, Or }; Mode mode; - typedef Storage<ParamChecker>::Objects ParamCheckers; + typedef ANONORDEREDSTORAGEOF(ParamChecker) ParamCheckers; ParamCheckers checks; }; @@ -30,9 +30,9 @@ class If : public NoOutputExecute, public View, public IfSet { const bool localErrorHandling; private: - typedef Storage<View>::Objects SubViews; + typedef ANONSTORAGEOF(View) SubViews; SubViews subViews; - typedef Storage<NoOutputExecute>::Objects SubNOEs; + typedef ANONORDEREDSTORAGEOF(NoOutputExecute) SubNOEs; SubNOEs normNOEs; SubNOEs errorNOEs; |