From 12d2af7925d02feae832104da8fe07d0075396d3 Mon Sep 17 00:00:00 2001 From: cppxor2arr Date: Sat, 10 Jun 2017 12:57:12 +0900 Subject: [PATCH] Removed unnecessary CleanString() function (#443) Two `CleanString()` functions with the only differing thing the first parameter (`const char*` vs `std::string`); removed the one with `const char*` since `std::string` can be constructed with `const char*`. --- src/Format.cpp | 5 ----- src/Format.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/Format.cpp b/src/Format.cpp index 867642695..f2a4c92e8 100644 --- a/src/Format.cpp +++ b/src/Format.cpp @@ -123,11 +123,6 @@ std::string format::CleanString(std::string dirtyString, bool ascii, bool color, return dirtyString; } -std::string format::CleanString(const char * dirtyData, bool ascii, bool color, bool newlines, bool numeric) -{ - return CleanString(std::string(dirtyData), ascii, color, newlines, numeric); -} - std::vector format::VideoBufferToPTI(const VideoBuffer & vidBuf) { std::vector data; diff --git a/src/Format.h b/src/Format.h index 2caf4e827..388f82463 100644 --- a/src/Format.h +++ b/src/Format.h @@ -27,7 +27,6 @@ namespace format std::string UnixtimeToDate(time_t unixtime, std::string dateFomat = "%d %b %Y"); std::string UnixtimeToDateMini(time_t unixtime); std::string CleanString(std::string dirtyString, bool ascii, bool color, bool newlines, bool numeric = false); - std::string CleanString(const char * dirtyData, bool ascii, bool color, bool newlines, bool numeric = false); std::vector VideoBufferToPNG(const VideoBuffer & vidBuf); std::vector VideoBufferToBMP(const VideoBuffer & vidBuf); std::vector VideoBufferToPPM(const VideoBuffer & vidBuf);