From be56723cce4cd60ddc144ebe6ac20607675b3006 Mon Sep 17 00:00:00 2001
From: chenqiyang <1406175257@qq.com>
Date: 星期三, 17 七月 2024 09:33:38 +0800
Subject: [PATCH] 更新sdk

---
 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/utils/general.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/utils/general.h b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/utils/general.h
index 2501347..562fc9f 100755
--- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/utils/general.h
+++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/utils/general.h
@@ -79,7 +79,7 @@
 // Debug.
 // -----------------------------------------------------------------------------
 
-void lAssert (const char *condition, const char *file, int line);
+LINPHONE_PUBLIC void lAssert (const char *condition, const char *file, int line);
 
 #ifdef DEBUG
 	#define L_ASSERT(CONDITION) ((CONDITION) ? static_cast<void>(0) : LinphonePrivate::lAssert(#CONDITION, __FILE__, __LINE__))
@@ -291,7 +291,8 @@
 // Math.
 // -----------------------------------------------------------------------------
 
-// Get the length of one integer.
+// Returns the number of digits of the absolute value of the input number
+// If the number is negative, add one to the length to account for - sign
 constexpr int getIntLength (int n) {
 	return n < 0 ? 1 + getIntLength(-n) : (n < 10 ? 1 : 1 + getIntLength(n / 10));
 }

--
Gitblit v1.8.0