Skip to content
Snippets Groups Projects
Commit 074a7117 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Systemlib: Address init and copy constructors

parent db174cf8
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,10 @@ public:
};
StateTable(Tran const *table, unsigned nStates, unsigned nSignals)
: myTable(table), myNsignals(nSignals) {}
: myState(0), myTable(table), myNsignals(nSignals) {}
StateTable(const StateTable &) = delete;
StateTable &operator=(const StateTable &) = delete;
#define NO_ACTION &StateTable::doNothing
#define ACTION(_target) StateTable::Action(_target)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment