Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Mar 11, 2024
1 parent b6bad0d commit 64179cb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ class Environment

public:
/** @brief This should only be used by the clone method */
Environment(std::unique_ptr<Implementation> impl);
explicit Environment(std::unique_ptr<Implementation> impl);
};
} // namespace tesseract_environment

Expand Down
1 change: 0 additions & 1 deletion tesseract_environment/src/environment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2678,7 +2678,6 @@ void Environment::load(Archive& ar, const unsigned int /*version*/) // NOLINT
{
std::unique_lock<std::shared_mutex> lock(mutex_);
ar& BOOST_SERIALIZATION_NVP(impl_);
assert(&std::as_const<Implementation>(*impl_) == impl_.get());
}

template <class Archive>
Expand Down
12 changes: 12 additions & 0 deletions tesseract_visualization/include/tesseract_visualization/fwd.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef TESSERACT_VISUALIZATION_FWD_H
#define TESSERACT_VISUALIZATION_FWD_H

namespace tesseract_visualization
{
class TrajectoryInterpolator;
class TrajectoryPlayer;
class VisualizationLoader;
class Visualization;
class Marker;
} // namespace tesseract_visualization
#endif // TESSERACT_VISUALIZATION_FWD_H

0 comments on commit 64179cb

Please sign in to comment.