Skip to content

Commit 2808612

Browse files
committed
xrAICore: fix MSVC build
1 parent 049d71c commit 2808612

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xrAICore/Components/problem_solver_inline.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ IC void CProblemSolverAbstract::add_operator(const _edge_type& operator_id, _ope
7575
typename OPERATOR_VECTOR::iterator I = std::lower_bound(m_operators.begin(), m_operators.end(), operator_id);
7676
THROW((I == m_operators.end()) || ((*I).m_operator_id != operator_id));
7777
#ifdef DEBUG
78-
validate_properties(_operator->conditions());
79-
validate_properties(_operator->effects());
78+
validate_properties(_op->conditions());
79+
validate_properties(_op->effects());
8080
#endif
8181
m_actuality = false;
8282
m_operators.insert(I, SOperator(operator_id, _op));

0 commit comments

Comments
 (0)