diff --git a/src/AutoPilotPlugins/AutoPilotPlugin.cc b/src/AutoPilotPlugins/AutoPilotPlugin.cc index b97266c532de226ea443079fd74ccf611ba7c09e..16af9e400050a0239523a15baebe347cf66b61c6 100644 --- a/src/AutoPilotPlugins/AutoPilotPlugin.cc +++ b/src/AutoPilotPlugins/AutoPilotPlugin.cc @@ -42,6 +42,9 @@ bool AutoPilotPlugin::factExists(FactSystem::Provider_t provider, int componentI // Other providers will go here once they come online } + + Q_ASSERT(false); + return false; } Fact* AutoPilotPlugin::getFact(FactSystem::Provider_t provider, int componentId, const QString& name) @@ -52,4 +55,7 @@ Fact* AutoPilotPlugin::getFact(FactSystem::Provider_t provider, int componentId, // Other providers will go here once they come online } + + Q_ASSERT(false); + return false; }