summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-02-28 20:56:12 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-02-28 20:56:12 (GMT)
commit107d84ae68208f51b524c2f0b933784a26d23ad3 (patch)
tree75245596f6a2a242b60d12c108faa92b964163cc /qtools
parent5e683eb0f019fbce9cf439b8c88eeec6254375c1 (diff)
downloadDoxygen-107d84ae68208f51b524c2f0b933784a26d23ad3.zip
Doxygen-107d84ae68208f51b524c2f0b933784a26d23ad3.tar.gz
Doxygen-107d84ae68208f51b524c2f0b933784a26d23ad3.tar.bz2
Fix a few compiler warnings in the Linux build
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qcstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qcstring.h b/qtools/qcstring.h
index c2a5dc3..e1414b5 100644
--- a/qtools/qcstring.h
+++ b/qtools/qcstring.h
@@ -391,7 +391,7 @@ public:
// resizes LSData so it can hold size bytes (which includes the 0 terminator!)
// Since this is for long strings only, size should be > SHORT_STR_CAPACITY
- static LSData *resize(LSData *d,int size)
+ static LSData *resize(LSData *d,uint size)
{
if (d->len>0 && d->refCount==0) // non-const, non-empty
{