Skip to content

Commit

Permalink
Solve issue with rpc on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Aug 10, 2023
1 parent d3b69f7 commit ef10236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/loaders/rpc_loader/source/rpc_loader_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ int rpc_loader_impl_load_from_stream_handle(loader_impl_rpc_handle rpc_handle, s
{
/* Remove white spaces */
url.erase(std::remove_if(url.begin(), url.end(), [](char &c) {
return std::isspace<char>(c, std::locale::classic());
return std::isspace(c);
}),
url.end());

Expand Down

0 comments on commit ef10236

Please sign in to comment.