Skip to content

Commit

Permalink
resolved codecheck issues (#70)
Browse files Browse the repository at this point in the history
Signed-off-by: Ashton Larkin <[email protected]>
  • Loading branch information
adlarkin authored Nov 4, 2020
1 parent 4538f98 commit 6925457
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/Manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
*
*/

#include "Manager.hh"

#include <fcntl.h>
#include <semaphore.h>
#include <signal.h>
Expand All @@ -25,6 +27,7 @@

#include <condition_variable>
#include <ctime>
#include <limits>
#include <list>
#include <mutex>
#include <numeric>
Expand All @@ -33,6 +36,7 @@
#include <string>
#include <thread>
#include <unordered_set>
#include <utility>
#include <vector>

#include <ignition/common/Console.hh>
Expand All @@ -44,7 +48,6 @@
#include "ignition/launch/config.hh"
#include "ignition/launch/Plugin.hh"

#include "Manager.hh"
#include "vendor/backward.hpp"

using namespace ignition::launch;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/plugins/bad_plugins.hh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ class SegfaultOnLoad : public ignition::launch::Plugin
{
public: SegfaultOnLoad();
public: virtual bool Load(
const tinyxml2::XMLElement * /*_elem*/) override final;
const tinyxml2::XMLElement * /*_elem*/) final;
};

0 comments on commit 6925457

Please sign in to comment.