From 331720d7aab1e6ff2b98ed98364d0414f268afa6 Mon Sep 17 00:00:00 2001 From: Henry LeCompte Date: Tue, 6 Aug 2024 11:56:57 -0400 Subject: [PATCH] Remove extra semicolons after macros in Bundle.h -Wpedantic logs wanings with extra semicolons --- include/manif/impl/bundle/Bundle.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/manif/impl/bundle/Bundle.h b/include/manif/impl/bundle/Bundle.h index 7edf35f2..a7c4ae22 100644 --- a/include/manif/impl/bundle/Bundle.h +++ b/include/manif/impl/bundle/Bundle.h @@ -121,14 +121,14 @@ struct Bundle : BundleBase> Bundle() = default; ~Bundle() = default; - MANIF_COPY_CONSTRUCTOR(Bundle); - MANIF_MOVE_CONSTRUCTOR(Bundle); + MANIF_COPY_CONSTRUCTOR(Bundle) + MANIF_MOVE_CONSTRUCTOR(Bundle) // Copy constructor template Bundle(const LieGroupBase<_DerivedOther> & o); - MANIF_GROUP_ASSIGN_OP(Bundle); + MANIF_GROUP_ASSIGN_OP(Bundle) // LieGroup common API