X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a0481d50f6da9cac5efd3502c3657b3fc461ec0d..01aa13f85f3032dff11fc23efdaf5a13389bf60e:/Server/src/string.cpp diff --git a/Server/src/string.cpp b/Server/src/string.cpp index 8f9b2db..97dd19f 100644 --- a/Server/src/string.cpp +++ b/Server/src/string.cpp @@ -93,21 +93,6 @@ String String::join(const vector& v, const string& sep) { return ss.str(); } -/* -template < class T > T& String::to(T& p) const { - stringstream ss(*this); - ss >> p; - return p; -} - -template < class T > String& String::from(const T& p) { - stringstream ss; - ss << p; - ss >> (*this); - return *this; -} -*/ - } // namespace Server } // namespace PlaQui