diff options
Diffstat (limited to 'src/formatter.cpp')
-rw-r--r-- | src/formatter.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/formatter.cpp b/src/formatter.cpp index 1ec3c39..36e49c8 100644 --- a/src/formatter.cpp +++ b/src/formatter.cpp | |||
@@ -159,6 +159,12 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const char *sStr ) | |||
159 | return rOut; | 159 | return rOut; |
160 | } | 160 | } |
161 | 161 | ||
162 | Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, char *sStr ) | ||
163 | { | ||
164 | rOut.writeAligned( sStr, strlen( sStr ) ); | ||
165 | return rOut; | ||
166 | } | ||
167 | |||
162 | Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::FString &sStr ) | 168 | Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::FString &sStr ) |
163 | { | 169 | { |
164 | rOut.writeAligned( sStr ); | 170 | rOut.writeAligned( sStr ); |