Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When trying to compile the master branch, the following error is raised
This can be fixed by adding tf2_eigen as dependency in CMakeLists.txt
This error is likely caused by a change in dependencies relationship whitin pcl_recorder target dependecies. For example, pcl_recorder depends in A and A depends on tf2_eigen, so tf2_eigen is imported as a dependency to pcl_recorder as well. For some unknown reason, A doesn't import tf2_eigen as dependency anymore, so pcl_recorder has a missing depency, as it uses tf2_eigen directly but doesn't lists as a dependency.
This change is