forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from jwnimmer-tri/normal_estimation
Normal estimation
- Loading branch information
Showing
8 changed files
with
33 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
tools/workspace/nanoflann_internal/patches/namespace.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Add a drake_vendor namespace ala tools/workspace/vendor_cxx | ||
|
||
This prevents link-time symbol conflicts in case code downstream of | ||
Drake wants to use a different build of nanoflann. | ||
|
||
--- include/nanoflann.hpp.orig | ||
+++ include/nanoflann.hpp | ||
@@ -70,6 +70,7 @@ | ||
#endif | ||
#endif | ||
|
||
+inline namespace drake_vendor __attribute__ ((visibility ("hidden"))) { | ||
namespace nanoflann | ||
{ | ||
/** @addtogroup nanoflann_grp nanoflann C++ library for ANN | ||
@@ -2414,3 +2415,4 @@ | ||
|
||
/** @} */ // end of grouping | ||
} // namespace nanoflann | ||
+} // namespace drake_vendor | ||
\ No newline at end of file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters