added to TextStream:

TextStreamBase & operator<<(unsigned char);
  TextStreamBase & operator<<(bool);
  TextStreamBase & operator<<(short);
  TextStreamBase & operator<<(unsigned short);
  TextStreamBase & operator<<(float);
  TextStreamBase & operator<<(long double);
This commit is contained in:
2021-06-15 19:54:50 +02:00
parent 4d70ae9e87
commit 8b0ed5e750
7 changed files with 97 additions and 41 deletions

View File

@@ -44,9 +44,10 @@
#include <map>
#include <cstdio>
#include <cwchar>
#include <errno.h>
#include "textstream/types.h"
#include "convert/inttostr.h"
#include <errno.h>
#include "utf8/utf8.h"