From 4f6ed03803614860c2e6c4109943a60127077b4a Mon Sep 17 00:00:00 2001 From: Andrew Melim Date: Mon, 8 Dec 2014 20:45:24 -0500 Subject: [PATCH] Fix missing symbol exports for windows --- gtsam/base/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam/base/debug.h b/gtsam/base/debug.h index f11245b1d..9502cb65b 100644 --- a/gtsam/base/debug.h +++ b/gtsam/base/debug.h @@ -45,8 +45,8 @@ namespace gtsam { GTSAM_EXTERN_EXPORT FastMap > debugFlags; // thread-safe functions to access debugFlags map - bool guardedIsDebug(const std::string& s); - void guardedSetDebug(const std::string& s, const bool v); + bool GTSAM_EXPORT guardedIsDebug(const std::string& s); + void GTSAM_EXPORT guardedSetDebug(const std::string& s, const bool v); } #undef ISDEBUG