Skip to content

Commit 99c0d03

Browse files
authored
Fix include order for cpplint (#192)
* Fix include order for cpplint Relates to ament/ament_lint#324 Signed-off-by: Jacob Perron <[email protected]> * Use double-quotes for backwards compatibility Signed-off-by: Jacob Perron <[email protected]>
1 parent e66d703 commit 99c0d03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/unique_ptr_test.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@
2828
* POSSIBILITY OF SUCH DAMAGE.
2929
*/
3030

31-
#include <class_loader/class_loader.hpp>
32-
#include <class_loader/multi_library_class_loader.hpp>
33-
34-
#include <gtest/gtest.h>
35-
3631
#include <chrono>
3732
#include <cstddef>
3833
#include <functional>
@@ -41,7 +36,12 @@
4136
#include <thread>
4237
#include <vector>
4338

44-
#include "./base.hpp"
39+
#include "gtest/gtest.h"
40+
41+
#include "class_loader/class_loader.hpp"
42+
#include "class_loader/multi_library_class_loader.hpp"
43+
44+
#include "base.hpp"
4545

4646
const std::string LIBRARY_1 = class_loader::systemLibraryFormat("class_loader_TestPlugins1"); // NOLINT
4747
const std::string LIBRARY_2 = class_loader::systemLibraryFormat("class_loader_TestPlugins2"); // NOLINT

0 commit comments

Comments
 (0)