count type correction.

This commit is contained in:
jaynus 2015-04-21 16:50:01 -07:00
parent 93bcf7e9a1
commit e96ba88351

View File

@ -37,8 +37,8 @@ std::vector<std::string> splitString(const std::string & input) {
std::string addLineBreaks(const std::vector<std::string> &words) {
std::stringstream sstream;
int numChar = 0;
int i = 0;
size_t numChar = 0;
size_t i = 0;
while (i < words.size()) {
if (numChar == 0) {