summaryrefslogtreecommitdiff
path: root/ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2026-03-27 09:31:42 +0000
committerCoprDistGit <infra@openeuler.org>2026-03-27 09:31:42 +0000
commit5a210641782b9e0cbb1c84f389a1382243716af5 (patch)
tree75f0b33cbf97c10dec8417547fbcb9203c47c6c0 /ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch
parent8ca9b7f551616d961e21141b681ffc299d3e9646 (diff)
automatic import of nav2-constrained-smootheropeneuler24.03_LTS
Diffstat (limited to 'ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch')
-rw-r--r--ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch b/ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch
deleted file mode 100644
index 4742e57..0000000
--- a/ros-humble-nav2-constrained-smoother-1.1.9-fix-gcc12-compile-error.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur ros-humble-nav2-constrained-smoother-1.1.9_org/include/nav2_constrained_smoother/smoother.hpp ros-humble-nav2-constrained-smoother-1.1.9/include/nav2_constrained_smoother/smoother.hpp
---- ros-humble-nav2-constrained-smoother-1.1.9_org/include/nav2_constrained_smoother/smoother.hpp 2023-09-11 19:06:58.704711382 +0800
-+++ ros-humble-nav2-constrained-smoother-1.1.9/include/nav2_constrained_smoother/smoother.hpp 2023-09-11 19:09:44.435139162 +0800
-@@ -292,7 +292,7 @@
- }
- int last_i = 0;
- int prelast_i = -1;
-- Eigen::Vector2d prelast_dir;
-+ Eigen::Vector2d prelast_dir(0.0, 0.0);
- for (int i = 1; i <= static_cast<int>(path_optim.size()); i++) {
- if (i == static_cast<int>(path_optim.size()) || optimized[i]) {
- if (prelast_i != -1) {