We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
std::find_first_of(char)
1 parent 19a5ff1 commit 20c8d96Copy full SHA for 20c8d96
Sources/main.cpp
@@ -326,7 +326,7 @@ static int GdbserverMain(int argc, char **argv) {
326
327
const std::string &address = opts.getPositional("[host]:port");
328
#if defined(OS_POSIX)
329
- if (!address.empty() && address.find_first_of(":") == std::string::npos)
+ if (!address.empty() && address.find_first_of(':') == std::string::npos)
330
connection_type = channel_type::character_device;
331
#endif
332
0 commit comments