Skip to content

Commit

Permalink
xrAICore: fix MSVC build
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Jun 10, 2018
1 parent 049d71c commit 2808612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrAICore/Components/problem_solver_inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ IC void CProblemSolverAbstract::add_operator(const _edge_type& operator_id, _ope
typename OPERATOR_VECTOR::iterator I = std::lower_bound(m_operators.begin(), m_operators.end(), operator_id);
THROW((I == m_operators.end()) || ((*I).m_operator_id != operator_id));
#ifdef DEBUG
validate_properties(_operator->conditions());
validate_properties(_operator->effects());
validate_properties(_op->conditions());
validate_properties(_op->effects());
#endif
m_actuality = false;
m_operators.insert(I, SOperator(operator_id, _op));
Expand Down

0 comments on commit 2808612

Please sign in to comment.