Skip to content

Commit

Permalink
[lldb] Explicitly declare the default constructor in PlatformAndroidR…
Browse files Browse the repository at this point in the history
…emoteGDBServer

MSVC does not seem to like the inheriting constructor.
  • Loading branch information
labath committed Mar 2, 2022
1 parent 1425011 commit 4977da2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -24,7 +24,7 @@ namespace platform_android {
class PlatformAndroidRemoteGDBServer
: public platform_gdb_server::PlatformRemoteGDBServer {
public:
using PlatformRemoteGDBServer::PlatformRemoteGDBServer;
PlatformAndroidRemoteGDBServer() = default;

~PlatformAndroidRemoteGDBServer() override;

Expand Down

0 comments on commit 4977da2

Please sign in to comment.