update util lib
This commit is contained in:
parent
8fb63b80bd
commit
e8b3b33d3c
3 changed files with 3 additions and 2 deletions
|
@ -87,7 +87,7 @@ void Writer::val(int v) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// _____________________________________________________________________________
|
// _____________________________________________________________________________
|
||||||
void Writer::val(size_t v) {
|
void Writer::val(uint64_t v) {
|
||||||
valCheck();
|
valCheck();
|
||||||
*_out << v;
|
*_out << v;
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,8 +72,8 @@ class Writer {
|
||||||
void val(const std::string& v);
|
void val(const std::string& v);
|
||||||
void val(const char* v);
|
void val(const char* v);
|
||||||
void val(double v);
|
void val(double v);
|
||||||
void val(size_t v);
|
|
||||||
void val(int v);
|
void val(int v);
|
||||||
|
void val(uint64_t v);
|
||||||
void val(bool v);
|
void val(bool v);
|
||||||
void val(Null);
|
void val(Null);
|
||||||
void val(const Val& v);
|
void val(const Val& v);
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <clocale>
|
||||||
#include "util/Misc.h"
|
#include "util/Misc.h"
|
||||||
#include "util/Nullable.h"
|
#include "util/Nullable.h"
|
||||||
#include "util/String.h"
|
#include "util/String.h"
|
||||||
|
|
Loading…
Reference in a new issue