Skip to content

Commit

Permalink
fix IDOL_USE_MIBS
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Oct 1, 2024
1 parent ca85af4 commit 88f439b
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,11 @@ idol::Bilevel::MibS *idol::Bilevel::MibS::clone() const {
}

idol::Bilevel::MibS::MibS(const idol::Bilevel::MibS &t_src)
: m_description(t_src.m_description),
m_osi_interface(
: m_description(t_src.m_description)
#ifdef IDOL_USE_OSI
t_src.m_osi_interface ? t_src.m_osi_interface->clone() : nullptr
#else
nullptr
, m_osi_interface(t_src.m_osi_interface ? t_src.m_osi_interface->clone() : nullptr)
#endif
) {
{

}

Expand Down

0 comments on commit 88f439b

Please sign in to comment.