mirror of
https://github.com/znc/znc.git
synced 2026-08-07 01:13:25 +02:00
Fix a bunch of conversion warnings #197
This commit is contained in:
+2
-2
@@ -31,7 +31,7 @@ void CTemplateOptions::Parse(const CString& sLine) {
|
||||
}
|
||||
|
||||
CTemplate* CTemplateLoopContext::GetRow(unsigned int uIndex) {
|
||||
unsigned int uSize = m_pvRows->size();
|
||||
size_t uSize = m_pvRows->size();
|
||||
|
||||
if (uIndex < uSize) {
|
||||
if (m_bReverse) {
|
||||
@@ -304,7 +304,7 @@ bool CTemplate::Print(const CString& sFileName, ostream& oOut) {
|
||||
uLineNum++;
|
||||
CString::size_type iPos = 0;
|
||||
uCurPos = uFilePos;
|
||||
unsigned int uLineSize = sLine.size();
|
||||
CString::size_type uLineSize = sLine.size();
|
||||
bool bBroke = false;
|
||||
|
||||
while (1) {
|
||||
|
||||
Reference in New Issue
Block a user