diff options
author | deva <deva> | 2008-06-09 06:49:58 +0000 |
---|---|---|
committer | deva <deva> | 2008-06-09 06:49:58 +0000 |
commit | e80ccdfac750fdd318eecb35b5f48a3d251ec7ec (patch) | |
tree | c296fb042d17f75aad06ff95e5f48dcb8143dabd /server/src/database.h | |
parent | c3a7893d9f2c67614257bc0dbfa802b9cc9ff056 (diff) |
Made output accumulation in a buffer and write in the end, thus enabling the corretc outputting of the error box if neccessary.
Diffstat (limited to 'server/src/database.h')
-rw-r--r-- | server/src/database.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/database.h b/server/src/database.h index 8200129..31d69fc 100644 --- a/server/src/database.h +++ b/server/src/database.h @@ -38,6 +38,7 @@ class Value { public: + Value() : value(""), timestamp(0) {} std::string value; time_t timestamp; }; |