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 75fcc11 commit eeeabc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions test/test_accumulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
#endif
#endif

#include <rcppmath/rolling_mean_accumulator.hpp>

#include <gtest/gtest.h>
#include <cmath>
#include <memory>

#include "gtest/gtest.h"

#include <rcppmath/rolling_mean_accumulator.hpp>

TEST(TestAccumulator, test_accumulator)
{
Expand Down
7 changes: 3 additions & 4 deletions test/test_env.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <gtest/gtest.h>

#include <rcpputils/env.hpp>

#include <stdexcept>
#include <string>

#include "gtest/gtest.h"

#include <rcpputils/env.hpp>

/* Tests get_env_var.
*
Expand Down

0 comments on commit eeeabc7

Please sign in to comment.