From a29e6fe2fc8a49cbbafbb07319d4b7b01f96c519 Mon Sep 17 00:00:00 2001 From: marian Date: Tue, 5 Aug 2014 10:44:33 +0000 Subject: [PATCH] Removed unused function. git-svn-id: http://voip.null.ro/svn/yate@5899 acf43c95-373e-0410-b603-e72c3f656dc1 --- engine/Base64.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/engine/Base64.cpp b/engine/Base64.cpp index 622d0f51..f7b4dfc1 100644 --- a/engine/Base64.cpp +++ b/engine/Base64.cpp @@ -133,14 +133,6 @@ static inline bool addDec(DataBlock& dest, unsigned int& idx, return false; } -// Add a padding char to dest and increase index -static inline void addPadding(String& dest, unsigned int& idx, - unsigned int& lines, unsigned int& crtLine, unsigned int lineLen) -{ - ((char*)dest.c_str())[idx++] = PADDING_CHAR; - addEoln(dest,idx,lines,crtLine,lineLen); -} - // Encode this buffer to a destination string void Base64::encode(String& dest, unsigned int lineLen, bool lineAtEnd) {