Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some library import errors #425

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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 grid_map_cv/include/grid_map_cv/InpaintFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#pragma once

#include <filters/filter_base.hpp>
#include <filters/filter_base>

//OpenCV
#include "grid_map_cv/grid_map_cv.hpp"
Expand Down
4 changes: 2 additions & 2 deletions grid_map_demos/include/grid_map_demos/FiltersDemo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
#pragma GCC diagnostic ignored "-Wformat"
#include <filters/filter_chain.hpp>
#include <filters/filter_chain.h>
#pragma GCC diagnostic pop
#include <ros/ros.h>
#include <string>
Expand Down Expand Up @@ -77,4 +77,4 @@ class FiltersDemo
std::string filterChainParametersName_;
};

} /* namespace */
} /* namespace */
4 changes: 2 additions & 2 deletions grid_map_demos/src/normal_filter_comparison_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
#pragma GCC diagnostic ignored "-Wformat"
#include <filters/filter_chain.hpp>
#include <filters/filter_chain.h>
#pragma GCC diagnostic pop
#include <ros/ros.h>
#include <Eigen/Core>
Expand Down Expand Up @@ -282,4 +282,4 @@ void mapAverageFiltering(grid_map::GridMap& map, const grid_map::Size& gridMapSi
}
}
}
} // namespace grid_map
} // namespace grid_map