Getting rid of compiler warnings.

This commit is contained in:
Tadas Baltrusaitis
2016-08-14 10:20:07 -04:00
parent 4c2e0bd9a0
commit ef15d5c2cd
4 changed files with 834 additions and 831 deletions

View File

@@ -802,14 +802,14 @@ void post_process_output_file(FaceAnalysis::FaceAnalyser& face_analyser, string
outfile << output_file_contents[0].c_str() << endl;
// Write the contents
for (size_t i = 1; i < output_file_contents.size(); ++i)
for (int i = 1; i < (int)output_file_contents.size(); ++i)
{
std::vector<std::string> tokens;
boost::split(tokens, output_file_contents[i], boost::is_any_of(","));
outfile << tokens[0];
for (size_t t = 1; t < tokens.size(); ++t)
for (int t = 1; t < (int)tokens.size(); ++t)
{
if (t >= begin_ind && t < end_ind)
{