mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-07-23 13:07:45 +00:00
Getting rid of compiler warnings.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user