From: Gabriel Corona Date: Mon, 18 Apr 2016 13:47:16 +0000 (+0200) Subject: [mc] Add missing XBT_PUBLIC() in config.hpp X-Git-Tag: v3_13~69 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3d70da389cdc6ca28f6caf05eac282df5c6f3810?ds=sidebyside;hp=0942b8e2b7ea76e5a60a43fc137d732a5ea8a1d0 [mc] Add missing XBT_PUBLIC() in config.hpp --- diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index af350a5307..42f8fdfd74 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -21,9 +21,9 @@ namespace simgrid { namespace config { -bool parseBool(const char* value); -double parseDouble(const char* value); -long int parseLong(const char* value); +XBT_PUBLIC(bool) parseBool(const char* value); +XBT_PUBLIC(double) parseDouble(const char* value); +XBT_PUBLIC(long int) parseLong(const char* value); template struct parse_option { static inline T parse(const char* value)