Skip to content

Commit

Permalink
delete constructor from string to fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
varunagrawal committed Oct 9, 2024
1 parent 99a39e6 commit 752e10f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gtsam/hybrid/HybridGaussianProductFactor.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ class GTSAM_EXPORT HybridGaussianProductFactor
*/
HybridGaussianProductFactor(Base&& tree) : Base(std::move(tree)) {}

/// Deleted constructor since we don't have istream operator for
/// GaussianFactorGraphValuePair
HybridGaussianProductFactor(const std::vector<Key>& labelCs,
const std::string& table) = delete;

///@}

/// @name Operators
Expand Down

0 comments on commit 752e10f

Please sign in to comment.