mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Small fix in DAP protocol implementation.
This commit is contained in:
@@ -1303,7 +1303,7 @@ void DebuggerPlugin::replaceKeysInJson(
|
||||
j = std::move( argsArr );
|
||||
continue;
|
||||
} else if ( runConfig && val == KEY_ENV && buildConfig ) {
|
||||
j = nlohmann::json{};
|
||||
j = nlohmann::json::object();
|
||||
for ( const auto& env : buildConfig->envs() )
|
||||
j[env.first] = env.second;
|
||||
} else if ( val == KEY_STOPONENTRY ) {
|
||||
|
||||
Reference in New Issue
Block a user