replaced concept check no op with alternate that doesn't cause a segfault

release/4.3a0
Varun Agrawal 2023-03-10 15:34:50 -05:00
parent 551818cbf1
commit a6d13763a6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
// This does something sensible:
#define BOOST_CONCEPT_USAGE(concept) void check##concept()
// These just ignore the concept checking for now:
#define GTSAM_CONCEPT_ASSERT(concept) void*(concept)
#define GTSAM_CONCEPT_ASSERT(concept) static_assert(true, "")
#define GTSAM_CONCEPT_REQUIRES(concept, return_type) return_type
#endif