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

Include "pcl_config.h" before testing HAVE_QHULL #2979

Merged
merged 1 commit into from
Apr 8, 2019
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 surface/include/pcl/surface/concave_hull.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@

#pragma once

#include <pcl/pcl_config.h>
#ifdef HAVE_QHULL

#include <pcl/pcl_config.h>
#include <pcl/surface/convex_hull.h>

namespace pcl
Expand Down
2 changes: 1 addition & 1 deletion surface/include/pcl/surface/convex_hull.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@

#pragma once

#include <pcl/pcl_config.h>
#ifdef HAVE_QHULL

// PCL includes
#include <pcl/pcl_config.h>
#include <pcl/surface/reconstruction.h>
#include <pcl/ModelCoefficients.h>
#include <pcl/PolygonMesh.h>
Expand Down
3 changes: 1 addition & 2 deletions surface/include/pcl/surface/qhull.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@

#pragma once

#ifdef HAVE_QHULL

#include <pcl/pcl_config.h>
#ifdef HAVE_QHULL

#if defined __GNUC__
# pragma GCC system_header
Expand Down
2 changes: 0 additions & 2 deletions surface/src/concave_hull.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
*/

#include <pcl/pcl_config.h>


#ifdef HAVE_QHULL

#include <pcl/impl/instantiate.hpp>
Expand Down