merge with dev

This commit is contained in:
Desmis
2019-04-11 08:12:04 +02:00
22 changed files with 68 additions and 90 deletions

View File

@@ -699,10 +699,7 @@ public:
ProcEvent(): code_(0) {}
ProcEvent(ProcEventCode code): code_(code) {}
explicit ProcEvent(int code): code_(code) {}
operator int()
{
return code_;
}
operator int() const { return code_; }
private:
int code_;