Skip to content

Commit

Permalink
Convert remaining #include statements to use gz/ (#59)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters authored May 14, 2022
1 parent b802e60 commit fbec80f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cli/src/cli_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#include <memory>

#include <ignition/utils/cli/CLI.hpp>
#include <ignition/utils/cli/IgnitionFormatter.hpp>
#include <gz/utils/cli/CLI.hpp>
#include <gz/utils/cli/GzFormatter.hpp>

/////////////////////////////////////////////////
struct TestOptions
Expand Down
2 changes: 1 addition & 1 deletion src/Environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

#include <ignition/utils/Environment.hh>
#include <gz/utils/Environment.hh>

#include <cstdlib>
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion src/Environment_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <gtest/gtest.h>

#include <ignition/utils/Environment.hh>
#include <gz/utils/Environment.hh>

using namespace ignition;

Expand Down
2 changes: 1 addition & 1 deletion src/NeverDestroyed_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

#include "ignition/utils/NeverDestroyed.hh"
#include "gz/utils/NeverDestroyed.hh"

#include <gtest/gtest.h>

Expand Down
2 changes: 1 addition & 1 deletion test/integration/implptr/ImplPtr_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <gtest/gtest.h>

#include <ignition/utils/ImplPtr.hh>
#include <gz/utils/ImplPtr.hh>
#include "implptr_test_classes.hh"

using namespace ignition::implptr_test_classes;
Expand Down
4 changes: 2 additions & 2 deletions test/integration/implptr/implptr_test_classes.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#ifndef IGNITION_UTILS_TEST_IMPLPTR_TEST_CLASSES_HH_
#define IGNITION_UTILS_TEST_IMPLPTR_TEST_CLASSES_HH_

#include <ignition/utils/ImplPtr.hh>
#include <ignition/utils/Export.hh>
#include <gz/utils/ImplPtr.hh>
#include <gz/utils/Export.hh>

#include <functional>
#include <string>
Expand Down

0 comments on commit fbec80f

Please sign in to comment.