mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
fix(core): export correctly some symbols on windows
This commit is contained in:
parent
76d2303c40
commit
4e5a76afd0
2 changed files with 2 additions and 3 deletions
|
|
@ -83,9 +83,8 @@ namespace Utils {
|
|||
LINPHONE_PUBLIC std::string toString (long double val);
|
||||
LINPHONE_PUBLIC std::string toString (const void *val);
|
||||
|
||||
LINPHONE_PUBLIC
|
||||
template<typename T, typename = typename std::enable_if<IsDefinedEnum<T>::value, T>::type>
|
||||
inline std::string toString (const T &val) { return getEnumValueAsString(val); }
|
||||
LINPHONE_PUBLIC inline std::string toString (const T &val) { return getEnumValueAsString(val); }
|
||||
|
||||
LINPHONE_PUBLIC int stoi (const std::string &str, size_t *idx = 0, int base = 10);
|
||||
LINPHONE_PUBLIC long long stoll (const std::string &str, size_t *idx = 0, int base = 10);
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class Core;
|
|||
class CoreAccessorPrivate;
|
||||
|
||||
// Decorator to get a valid core instance.
|
||||
LINPHONE_PUBLIC class CoreAccessor {
|
||||
class LINPHONE_PUBLIC CoreAccessor {
|
||||
public:
|
||||
CoreAccessor (const std::shared_ptr<Core> &core);
|
||||
CoreAccessor (const std::shared_ptr<Core> &&core);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue