Skip to content

Commit

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

Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron authored Jan 12, 2022
1 parent 6575643 commit 98f8a00
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rttest/src/rttest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <rttest/math_utils.hpp>
#include <rttest/rttest.h>
#include <rttest/utils.hpp>
#include "rttest/rttest.h"

#include <alloca.h>
#include <limits.h>
Expand All @@ -38,6 +36,9 @@
#include <utility>
#include <vector>

#include "rttest/math_utils.hpp"
#include "rttest/utils.hpp"

class rttest_sample_buffer
{
public:
Expand Down

0 comments on commit 98f8a00

Please sign in to comment.