Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Mar 8, 2024
1 parent 6f3d953 commit bb88811
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
#include <string>
#include <chrono>
#include <set>
#include <memory>
#include <shared_mutex>
#include <Eigen/Geometry>
TESSERACT_COMMON_IGNORE_WARNINGS_POP
Expand Down Expand Up @@ -528,7 +529,7 @@ class Environment

/** @brief This hides specific implemenation details to allow forward declarations */
struct Implementation;
std::unique_ptr<Implementation> opaque_impl_;
std::unique_ptr<Implementation> impl_;

friend class boost::serialization::access;
template <class Archive>
Expand Down
Loading

0 comments on commit bb88811

Please sign in to comment.