1
0
forked from GitHub/gf-core

PgfDB::ref_count must be size_t

This commit is contained in:
krangelov
2021-11-03 11:50:21 +01:00
parent 43f40e701a
commit 547783e50e

View File

@@ -67,7 +67,7 @@ private:
public:
// Here we count to how many revisions the client has access.
// When the count is zero we release the database.
int ref_count;
size_t ref_count;
PGF_INTERNAL_DECL PgfDB(const char* filepath, int flags, int mode);
PGF_INTERNAL_DECL ~PgfDB();