Commit a25a9172 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander Trofimov

size_t no matching function for call to min

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64128 954022d7-b5bf-4e40-9824-e11837661b57
parent 9ab620c7
...@@ -423,7 +423,7 @@ mc:Ignorable=\"w14 wp14\">"; ...@@ -423,7 +423,7 @@ mc:Ignorable=\"w14 wp14\">";
strm << L"<w:abstractNum w:abstractNumId=\"" << abstractNumId << "\">"; strm << L"<w:abstractNum w:abstractNumId=\"" << abstractNumId << "\">";
numIds.push_back(abstractNumId); numIds.push_back(abstractNumId);
for (int i = 0; i < (std::min)( content.size(), (unsigned int)9); i++) for (int i = 0; i < (std::min)( content.size(), (size_t)9); i++)
{ {
start_text_list_style(inst->get_text_list_style()->get_style_name()); start_text_list_style(inst->get_text_list_style()->get_style_name());
content[i]->docx_convert(*this); content[i]->docx_convert(*this);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment