From 0d505a6be4c292b69c63edf2fbd7bf2550717820 Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Wed, 28 May 2014 15:35:43 -0400 Subject: [PATCH] Removed redundant declaration --- Jupiter/CString.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Jupiter/CString.h b/Jupiter/CString.h index 76a370c..02def33 100644 --- a/Jupiter/CString.h +++ b/Jupiter/CString.h @@ -46,26 +46,6 @@ namespace Jupiter */ const T *c_str() const; - /** - * @brief Sets the CString's contents based on the format string and input variables. - * Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. - * - * @param format Format that the string is compared against. - * @param args Variable arguments list to match the format specifiers. - * @return Number of characters written. - */ - virtual size_t vformat(const T *format, va_list args) = 0; - - /** - * @brief Appends to a CString's contents based on the format string and input variables. - * Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. - * - * @param format Format that the string is compared against. - * @param args Variable arguments list to match the format specifiers. - * @return Number of characters written. - */ - virtual size_t avformat(const T *format, va_list args) = 0; - /** * @brief Truncates the string by a specified number of elements. *