Skip to content

Commit

Permalink
code formating
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Mar 5, 2013
1 parent 605fa17 commit bc4c071
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shogun/base/SGObject.cpp
Expand Up @@ -1215,7 +1215,9 @@ void CSGObject::build_parameter_dictionary(CMap<TParameter*, CSGObject*>& dict)

dict.add(p, this);

if ((p->m_datatype.m_ptype == PT_SGOBJECT) && (p->m_datatype.m_ctype == CT_SCALAR) && (*(CSGObject**)(p->m_parameter) != NULL))
if ((p->m_datatype.m_ptype == PT_SGOBJECT) &&
(p->m_datatype.m_ctype == CT_SCALAR) &&
(*(CSGObject**)(p->m_parameter) != NULL))
{
CSGObject* child =
*((CSGObject**)(p->m_parameter));
Expand Down

0 comments on commit bc4c071

Please sign in to comment.