mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
fix compilation error under icc.
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@491 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
16ae9ae801
commit
3225e1bf6d
1 changed files with 2 additions and 1 deletions
|
|
@ -462,7 +462,8 @@ size_t b64_encode2( void const *src
|
|||
lineLen = 76;
|
||||
break;
|
||||
default:
|
||||
assert(!"Bad line length flag specified to b64_encode2()");
|
||||
/*the following assert makes a compiler error with icc*/
|
||||
/*assert(!"Bad line length flag specified to b64_encode2()");*/
|
||||
case B64_F_LINE_LEN_INFINITE:
|
||||
lineLen = 0;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue