Skip to content

Commit

Permalink
Fix include order and relative path syntax 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 11, 2022
1 parent 140169b commit 74a0e55
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "./rmw_implemented_serialization_format_converter.hpp"
#include "rmw_implemented_serialization_format_converter.hpp"

#include <memory>
#include <sstream>
Expand Down
2 changes: 1 addition & 1 deletion rosbag2_py/src/rosbag2_py/format_bag_metadata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "./format_bag_metadata.hpp"
#include "format_bag_metadata.hpp"

#include <chrono>
#include <iostream>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include "message_generator.h"
#include "./message_generator.h"

#include <algorithm>
#include <vector>
Expand Down
3 changes: 2 additions & 1 deletion rosbag2_storage_evaluation/src/writer/sqlite/sqlite_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
#ifndef ROS2_ROSBAG_EVALUATION_SQLITE_WRITER_H
#define ROS2_ROSBAG_EVALUATION_SQLITE_WRITER_H

#include <ostream>
#include <sqlite3.h>

#include <ostream>
#include <set>
#include <map>

Expand Down

0 comments on commit 74a0e55

Please sign in to comment.