Skip to content

Commit

Permalink
Fix ExpressionFactor wrong GTSAM_EXPORT
Browse files Browse the repository at this point in the history
  • Loading branch information
ProfFan committed Dec 11, 2024
1 parent a1ba3d7 commit b76c6d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtsam/nonlinear/ExpressionFactor.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace gtsam {
*
*/
template <typename T>
class GTSAM_EXPORT ExpressionFactor : public NoiseModelFactor {
class ExpressionFactor : public NoiseModelFactor {
GTSAM_CONCEPT_ASSERT(IsTestable<T>);

protected:
Expand Down Expand Up @@ -246,7 +246,7 @@ struct traits<ExpressionFactor<T> > : public Testable<ExpressionFactor<T> > {};
*
*/
template <typename T, typename... Args>
class GTSAM_EXPORT ExpressionFactorN : public ExpressionFactor<T> {
class ExpressionFactorN : public ExpressionFactor<T> {
public:
static const std::size_t NARY_EXPRESSION_SIZE = sizeof...(Args);
using ArrayNKeys = std::array<Key, NARY_EXPRESSION_SIZE>;
Expand Down

0 comments on commit b76c6d8

Please sign in to comment.