mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 11:55:35 +08:00
Workaround GCC 5.3 bug about constructor inheritance
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=6705 for details
This commit is contained in:
committed by
Klaus Basan
parent
beec08f70c
commit
18ed289949
@@ -86,7 +86,9 @@ namespace BlackSimPlugin
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
using CSimulatorFsxCommonListener::CSimulatorFsxCommonListener;
|
||||
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67054 - Constructor inheritance with non-default constructible members
|
||||
// using CSimulatorFsxCommonListener::CSimulatorFsxCommonListener;
|
||||
CSimulatorP3DListener(const BlackMisc::Simulation::CSimulatorPluginInfo &info) : FsxCommon::CSimulatorFsxCommonListener(info) {}
|
||||
|
||||
protected:
|
||||
virtual void startImpl() override;
|
||||
|
||||
Reference in New Issue
Block a user