From 6ee70dc707ce3e0fb68c651817b8648bfd4f8915 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 20 Oct 2010 18:37:32 +0000 Subject: Ugh, stupid bools. --- src/dictionary.cpp | 4 ++-- src/dictionary.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dictionary.cpp b/src/dictionary.cpp index 9b84518..ec65a3b 100644 --- a/src/dictionary.cpp +++ b/src/dictionary.cpp @@ -132,13 +132,13 @@ void Gats::Dictionary::insert( const Bu::FString &sKey, signed long long i ) sKey, new Gats::Integer( i ) ); } - +/* void Gats::Dictionary::insert( const Bu::FString &sKey, bool b ) { Bu::Hash::insert( sKey, new Gats::Boolean( b ) ); -} +}*/ void Gats::Dictionary::insert( const Bu::FString &sKey, double d ) { diff --git a/src/dictionary.h b/src/dictionary.h index 620b7c3..fa11f1d 100644 --- a/src/dictionary.h +++ b/src/dictionary.h @@ -33,7 +33,7 @@ namespace Gats void insert( const Bu::FString &sKey, signed long i ); void insert( const Bu::FString &sKey, unsigned long long i ); void insert( const Bu::FString &sKey, signed long long i ); - void insert( const Bu::FString &sKey, bool b ); + //void insert( const Bu::FString &sKey, bool b ); void insert( const Bu::FString &sKey, double d ); using Bu::Hash::insert; -- cgit v1.2.3