diff options
Diffstat (limited to 'src/fstring.h')
-rw-r--r-- | src/fstring.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fstring.h b/src/fstring.h index 0793154..1fc02ca 100644 --- a/src/fstring.h +++ b/src/fstring.h | |||
@@ -20,6 +20,22 @@ namespace Bu | |||
20 | 20 | ||
21 | template<typename t> void __tracer_format( const t &v ); | 21 | template<typename t> void __tracer_format( const t &v ); |
22 | template<> void __tracer_format<FString>( const FString &v ); | 22 | template<> void __tracer_format<FString>( const FString &v ); |
23 | |||
24 | bool &operator<<( bool &dst, const FString &sIn ); | ||
25 | uint8_t &operator<<( uint8_t &dst, const FString &sIn ); | ||
26 | int8_t &operator<<( int8_t &dst, const FString &sIn ); | ||
27 | char &operator<<( char &dst, const FString &sIn ); | ||
28 | uint16_t &operator<<( uint16_t &dst, const FString &sIn ); | ||
29 | int16_t &operator<<( int16_t &dst, const FString &sIn ); | ||
30 | uint32_t &operator<<( uint32_t &dst, const FString &sIn ); | ||
31 | int32_t &operator<<( int32_t &dst, const FString &sIn ); | ||
32 | uint64_t &operator<<( uint64_t &dst, const FString &sIn ); | ||
33 | int64_t &operator<<( int64_t &dst, const FString &sIn ); | ||
34 | float &operator<<( float &dst, const FString &sIn ); | ||
35 | double &operator<<( double &dst, const FString &sIn ); | ||
36 | long double &operator<<( long double &dst, const FString &sIn ); | ||
37 | Bu::FString &operator<<( Bu::FString &dst, const FString &sIn ); | ||
38 | |||
23 | } | 39 | } |
24 | 40 | ||
25 | /***** I dunno about this block, I don't really want to have it... ***** | 41 | /***** I dunno about this block, I don't really want to have it... ***** |