Fix uninitialized member by coverity CID 1294558

Initialize the scope member in the default constructor.
This commit is contained in:
Felipe Magno de Almeida 2015-04-23 21:24:06 -03:00
parent e95488ded5
commit 5791065d29
1 changed files with 2 additions and 0 deletions

View File

@ -294,6 +294,8 @@ struct eo_function
struct eo_event
{
eo_event() : scope(eolian_scope::public_) {}
eolian_scope scope;
std::string name;
std::string eo_name;