Skip to content

Commit b10b183

Browse files
committed
исправлена ошибка компиляции
1 parent fe3977b commit b10b183

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/demo/ai/solarix/engines/grammar_engine_api.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6961,13 +6961,13 @@ GREN_API(void*) sol_LoadSyntaxTree(HGREN hEngine, void * file_handle)
69616961
}
69626962
catch (const lem::E_BaseException &x)
69636963
{
6964-
HandleEngine(hengine)->error = x.what();
6964+
HandleEngine(hEngine)->error = x.what();
69656965
//MessageBoxW(NULL, x.what(), L"ERROR@6965", MB_OK);
69666966
return nullptr;
69676967
}
69686968
catch (const std::exception &y)
69696969
{
6970-
HandleEngine(hengine)->error = lem::to_unicode(y.what());
6970+
HandleEngine(hEngine)->error = lem::to_unicode(y.what());
69716971
//MessageBoxA(NULL, y.what(), "ERROR@6971", MB_OK);
69726972
}
69736973
catch (...)

0 commit comments

Comments
 (0)