Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion image_tools/src/burger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <string>
#include <vector>

#include "./burger.hpp"
#include "burger.hpp"

#include "opencv2/core.hpp"
#include "opencv2/core/mat.hpp"
Expand Down
6 changes: 3 additions & 3 deletions intra_process_demo/src/image_pipeline/camera_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "image_pipeline/camera_node.hpp"
#include <memory>

#include <rclcpp/rclcpp.hpp>
#include "image_pipeline/camera_node.hpp"

#include <memory>
#include "rclcpp/rclcpp.hpp"

int main(int argc, char ** argv)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <rclcpp/rclcpp.hpp>

#include <memory>

#include "rclcpp/rclcpp.hpp"

#include "image_pipeline/camera_node.hpp"
#include "image_pipeline/image_view_node.hpp"
#include "image_pipeline/watermark_node.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <rclcpp/rclcpp.hpp>

#include <memory>

#include "rclcpp/rclcpp.hpp"

#include "image_pipeline/camera_node.hpp"
#include "image_pipeline/image_view_node.hpp"
#include "image_pipeline/watermark_node.hpp"
Expand Down
6 changes: 3 additions & 3 deletions intra_process_demo/src/image_pipeline/image_view_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "image_pipeline/image_view_node.hpp"
#include <memory>

#include <rclcpp/rclcpp.hpp>
#include "image_pipeline/image_view_node.hpp"

#include <memory>
#include "rclcpp/rclcpp.hpp"

int main(int argc, char ** argv)
{
Expand Down
6 changes: 3 additions & 3 deletions intra_process_demo/src/image_pipeline/watermark_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "image_pipeline/watermark_node.hpp"
#include <memory>

#include <rclcpp/rclcpp.hpp>
#include "image_pipeline/watermark_node.hpp"

#include <memory>
#include "rclcpp/rclcpp.hpp"

int main(int argc, char ** argv)
{
Expand Down
22 changes: 11 additions & 11 deletions pendulum_control/src/pendulum_demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@

#include <unistd.h>

#include <rttest/rttest.h>
#include <chrono>
#include <cstdio>
#include <memory>

#include <rclcpp/rclcpp.hpp>
#include <rclcpp/strategies/message_pool_memory_strategy.hpp>
#include <rclcpp/strategies/allocator_memory_strategy.hpp>
#include "rttest/rttest.h"

#include <tlsf_cpp/tlsf.hpp>
#include "rclcpp/rclcpp.hpp"
#include "rclcpp/strategies/message_pool_memory_strategy.hpp"
#include "rclcpp/strategies/allocator_memory_strategy.hpp"

#include <pendulum_msgs/msg/joint_command.hpp>
#include <pendulum_msgs/msg/joint_state.hpp>
#include <pendulum_msgs/msg/rttest_results.hpp>
#include "tlsf_cpp/tlsf.hpp"

#include <chrono>
#include <cstdio>
#include <memory>
#include "pendulum_msgs/msg/joint_command.hpp"
#include "pendulum_msgs/msg/joint_state.hpp"
#include "pendulum_msgs/msg/rttest_results.hpp"

#include "pendulum_control/pendulum_controller.hpp"
#include "pendulum_control/pendulum_motor.hpp"
Expand Down
2 changes: 1 addition & 1 deletion quality_of_service_demo/rclcpp/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <iostream>
#include <cctype>

#include "./utils.hpp"
#include "utils.hpp"

double
rmw_time_to_seconds(const rmw_time_t & time)
Expand Down