diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-07 16:16:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-07 16:16:33 +0000 |
commit | 3f2073c9801b87961223d3751ccbb23513ad9109 (patch) | |
tree | 8d1b54a0b8f9eb42efbfb0d88faa95041d54a198 | |
parent | 7339bc08a765b87b0140e350a05fcf0d22a57722 (diff) |
unused code wiped out
git-svn-id: http://svn.miranda-ng.org/main/trunk@4369 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Utils/mir_buffer.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/Utils/mir_buffer.h b/plugins/Utils/mir_buffer.h index 0428b9b969..4c49570175 100644 --- a/plugins/Utils/mir_buffer.h +++ b/plugins/Utils/mir_buffer.h @@ -26,25 +26,6 @@ Boston, MA 02111-1307, USA. #include "mir_memory.h"
#include <m_variables.h>
-
-template<class T>
-static int __bvsnprintf(T *str, size_t size, const T *fmt, va_list args)
-{
- return 0;
-}
-
-template<>
-static inline int __bvsnprintf<char>(char *str, size_t size, const char *fmt, va_list args)
-{
- return _vsnprintf(str, size, fmt, args);
-}
-
-template<>
-static inline int __bvsnprintf<wchar_t>(wchar_t *str, size_t size, const wchar_t *fmt, va_list args)
-{
- return _vsnwprintf(str, size, fmt, args);
-}
-
template<class T>
static inline size_t __blen(const T *str)
{
|