]> git.tdb.fi Git - libs/datafile.git/commitdiff
Drop the commented out old conversion functions
authorMikko Rasa <tdb@tdb.fi>
Wed, 23 Aug 2006 12:25:17 +0000 (12:25 +0000)
committerMikko Rasa <tdb@tdb.fi>
Wed, 23 Aug 2006 12:25:17 +0000 (12:25 +0000)
source/value.cpp

index 8cb1af0bab89862c3999a60fbd65c375243627fb..6d5e0320fb23c6bd8d8e7fbaf95dd32fdb2448ed 100644 (file)
@@ -4,47 +4,11 @@ Copyright © 2006 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 #include <msp/error.h>
-#include <msp/strconv.h>
 #include "value.h"
 
 namespace Msp {
 namespace Parser {
 
-/*template<>
-unsigned Value::get<unsigned long>() const
-{
-       if(type!=INTEGER)
-               throw TypeError("Value is not an integer");
-       errno=0;
-       unsigned long result=strtoul(data);
-       if(errno==ERANGE
-       return result;
-}
-
-template<>
-unsigned Value::get<unsigned>() const
-{
-       if(type!=INTEGER)
-               throw TypeError("Value is not an integer");
-       return strtoul(data);
-}
-
-template<>
-unsigned Value::get<unsigned short>() const
-{
-       if(type!=INTEGER)
-               throw TypeError("Value is not an integer");
-       return strtoul(data);
-}
-
-template<>
-float Value::get<float>() const
-{
-       if(type!=FLOAT && type!=INTEGER)
-               throw TypeError("Value is not a float");
-       return strtod(data);
-}*/
-
 template<>
 std::string Value::get<std::string>() const
 {