diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-08-13 16:14:53 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-08-13 16:14:53 +0000 |
commit | 3d5c548d630f8b6c86a250e1b7358824557ef01f (patch) | |
tree | 01bc0a81c7a9ae27209ca26e6ea5e0f09fb32dc5 /src/fstring.cpp | |
parent | 8e08c85cd77d7306fb3feaef8544778408c9d858 (diff) | |
download | libbu++-3d5c548d630f8b6c86a250e1b7358824557ef01f.tar.gz libbu++-3d5c548d630f8b6c86a250e1b7358824557ef01f.tar.bz2 libbu++-3d5c548d630f8b6c86a250e1b7358824557ef01f.tar.xz libbu++-3d5c548d630f8b6c86a250e1b7358824557ef01f.zip |
Ok, shared core looks good, and I added a unit test for Bu::List to check a few
basics. It works, so now I'm going to apply SharedCore to Bu::List and see how
bad it is.
Also, I got rid of all the warnings and things that showed up during
compilation, they were all silly anyway.
Finally, mkunit.sh is much cooler. Hard to believe it's a shell script, it now
also adds proper #line directives to the cpp output so if there is an error or
warning g++ will give you the right line number in your .unit file, not the
resultant cpp file.
Diffstat (limited to '')
-rw-r--r-- | src/fstring.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/fstring.cpp b/src/fstring.cpp index ce5492b..f77e718 100644 --- a/src/fstring.cpp +++ b/src/fstring.cpp | |||
@@ -110,15 +110,13 @@ int64_t &Bu::operator<<( int64_t &dst, const Bu::FString &sIn ) | |||
110 | 110 | ||
111 | float &Bu::operator<<( float &dst, const Bu::FString &sIn ) | 111 | float &Bu::operator<<( float &dst, const Bu::FString &sIn ) |
112 | { | 112 | { |
113 | double tmp; | 113 | sscanf( sIn.getStr(), "%f", &dst ); |
114 | sscanf( sIn.getStr(), "%f", &tmp ); | ||
115 | dst = tmp; | ||
116 | return dst; | 114 | return dst; |
117 | } | 115 | } |
118 | 116 | ||
119 | double &Bu::operator<<( double &dst, const Bu::FString &sIn ) | 117 | double &Bu::operator<<( double &dst, const Bu::FString &sIn ) |
120 | { | 118 | { |
121 | sscanf( sIn.getStr(), "%f", &dst ); | 119 | sscanf( sIn.getStr(), "%lf", &dst ); |
122 | return dst; | 120 | return dst; |
123 | } | 121 | } |
124 | 122 | ||