Skip to content

Commit

Permalink
Fix include order for cpplint
Browse files Browse the repository at this point in the history
Relates to ament/ament_lint#324

Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron committed Jan 7, 2022
1 parent e66d703 commit 8b0a733
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unique_ptr_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/

#include <class_loader/class_loader.hpp>
#include <class_loader/multi_library_class_loader.hpp>

#include <gtest/gtest.h>

#include <chrono>
Expand All @@ -41,6 +38,9 @@
#include <thread>
#include <vector>

#include <class_loader/class_loader.hpp>
#include <class_loader/multi_library_class_loader.hpp>

#include "./base.hpp"

const std::string LIBRARY_1 = class_loader::systemLibraryFormat("class_loader_TestPlugins1"); // NOLINT
Expand Down

0 comments on commit 8b0a733

Please sign in to comment.