Fix clang++ warning: no newline at end of file

This commit is contained in:
Ai Lin Chia 2018-02-28 11:06:20 +01:00
parent bcbc7ba79c
commit b39e925d82
4 changed files with 4 additions and 4 deletions

@ -92,4 +92,4 @@ void DocDelete::processDocItem(DocProcessDocItem *docItem) {
delete xmlDoc;
delete docItem;
}
}
}

@ -304,4 +304,4 @@ void dumpSpiderdbSqlite(const char *collname, int32_t firstIp) {
printf("\n");
}
sqlite3_finalize(stmt);
}
}

@ -216,4 +216,4 @@ const char *formatTimeMs(int64_t when, char buf[32]) {
strftime(buf,32,"%Y-%m-%dT%H:%M:%S",&t);
sprintf(strchr(buf,'\0'),".%03dZ",(int)(when%1000));
return buf;
}
}

@ -160,4 +160,4 @@ int32_t RdbMem::getAvailMem() const {
bool RdbMem::is90PercentFull() const {
ScopedLock sl(m_mtx);
return m_is90PercentFull;
}
}