mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Fixed: AIS crash if variable not initialized (forgot to commit)
--HG-- branch : develop
This commit is contained in:
parent
e60b630d09
commit
fc96bdf46d
1 changed files with 3 additions and 3 deletions
|
@ -431,8 +431,8 @@ std::string CStateInstance::getStrNelVar(std::string const& varId)
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
_StrNelVar[varId] = new NLMISC::CVariable<std::string>("StateInstanceVar", varId.c_str(), "", std::string());
|
_StrNelVar[varId] = new NLMISC::CVariable<std::string>("StateInstanceStrVar", varId.c_str(), "", std::string());
|
||||||
return _NelVar[varId]->get();
|
return _StrNelVar[varId]->get();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline
|
inline
|
||||||
|
|
Loading…
Reference in a new issue