aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-10-20 18:37:32 +0000
committerMike Buland <eichlan@xagasoft.com>2010-10-20 18:37:32 +0000
commit6ee70dc707ce3e0fb68c651817b8648bfd4f8915 (patch)
treeb717f8a2543756ab23f7dd4d9441dee5b95c0304 /src
parentb5eb1431c28254bfa90147f9ee4857598384be31 (diff)
downloadlibgats-6ee70dc707ce3e0fb68c651817b8648bfd4f8915.tar.gz
libgats-6ee70dc707ce3e0fb68c651817b8648bfd4f8915.tar.bz2
libgats-6ee70dc707ce3e0fb68c651817b8648bfd4f8915.tar.xz
libgats-6ee70dc707ce3e0fb68c651817b8648bfd4f8915.zip
Ugh, stupid bools.
Diffstat (limited to 'src')
-rw-r--r--src/dictionary.cpp4
-rw-r--r--src/dictionary.h2
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 )
132 sKey, new Gats::Integer( i ) 132 sKey, new Gats::Integer( i )
133 ); 133 );
134} 134}
135 135/*
136void Gats::Dictionary::insert( const Bu::FString &sKey, bool b ) 136void Gats::Dictionary::insert( const Bu::FString &sKey, bool b )
137{ 137{
138 Bu::Hash<Gats::String, Gats::Object *>::insert( 138 Bu::Hash<Gats::String, Gats::Object *>::insert(
139 sKey, new Gats::Boolean( b ) 139 sKey, new Gats::Boolean( b )
140 ); 140 );
141} 141}*/
142 142
143void Gats::Dictionary::insert( const Bu::FString &sKey, double d ) 143void Gats::Dictionary::insert( const Bu::FString &sKey, double d )
144{ 144{
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
33 void insert( const Bu::FString &sKey, signed long i ); 33 void insert( const Bu::FString &sKey, signed long i );
34 void insert( const Bu::FString &sKey, unsigned long long i ); 34 void insert( const Bu::FString &sKey, unsigned long long i );
35 void insert( const Bu::FString &sKey, signed long long i ); 35 void insert( const Bu::FString &sKey, signed long long i );
36 void insert( const Bu::FString &sKey, bool b ); 36 //void insert( const Bu::FString &sKey, bool b );
37 void insert( const Bu::FString &sKey, double d ); 37 void insert( const Bu::FString &sKey, double d );
38 using Bu::Hash<Gats::String, Gats::Object *>::insert; 38 using Bu::Hash<Gats::String, Gats::Object *>::insert;
39 39