From 4c81024ca2d6bff33df9b52d0600ef5146f6d86d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 21 Oct 2010 13:17:23 +0200 Subject: Remove no longer used wstring_printf functions --- client/utils.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'client/utils.cpp') diff --git a/client/utils.cpp b/client/utils.cpp index 9ce09d74..460f6107 100644 --- a/client/utils.cpp +++ b/client/utils.cpp @@ -29,14 +29,6 @@ void string_printf(std::string& str, const char* format, ...) va_end(ap); } -void wstring_printf(std::wstring& str, const wchar_t* format, ...) -{ - va_list ap; - va_start(ap, format); - wstring_vprintf(str, format, ap); - va_end(ap); -} - int str_to_port(const char *str) { long port; -- cgit