Index: src/Common/utility.h
===================================================================
--- src/Common/utility.h	(revision 1b7727498168639c89eefe42fd1a1772a41b30d1)
+++ src/Common/utility.h	(revision 2298f728513aa541b29ac43ced6409a7bde8e38c)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Sep 16 19:13:21 2016
-// Update Count     : 26
+// Last Modified On : Fri Sep 23 11:46:47 2016
+// Update Count     : 28
 //
 
@@ -102,10 +102,4 @@
 		} // if
 	} // for
-}
-
-static inline std::string assign_strptr( const std::string *str ) {
-	std::string tmp( *str );
-	delete str;
-	return tmp;
 }
 
@@ -137,10 +131,10 @@
 
 template < typename T >
-void toString_single ( std::ostream & os, const T & value ) {
+void toString_single( std::ostream & os, const T & value ) {
 	os << value;
 }
 
 template < typename T, typename... Params >
-void toString_single ( std::ostream & os, const T & value, const Params & ... params ) {
+void toString_single( std::ostream & os, const T & value, const Params & ... params ) {
 	os << value;
 	toString_single( os, params ... );
@@ -148,5 +142,5 @@
 
 template < typename ... Params >
-std::string toString ( const Params & ... params ) {
+std::string toString( const Params & ... params ) {
 	std::ostringstream os;
 	toString_single( os, params... );
