Try to fix compile error on Win32-vs70
This commit is contained in:
parent
4da2223ab7
commit
9a8103e929
|
@ -16,6 +16,7 @@
|
||||||
#include <cmsys/Directory.hxx>
|
#include <cmsys/Directory.hxx>
|
||||||
#include <cmsys/Glob.hxx>
|
#include <cmsys/Glob.hxx>
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
static const char *cmDocumentationStandardOptions[][3] =
|
static const char *cmDocumentationStandardOptions[][3] =
|
||||||
|
@ -746,9 +747,9 @@ void cmDocumentation::addCPackStandardDocSections()
|
||||||
void cmDocumentation::addAutomaticVariableSections(const std::string& section)
|
void cmDocumentation::addAutomaticVariableSections(const std::string& section)
|
||||||
{
|
{
|
||||||
std::vector<std::string>::iterator it;
|
std::vector<std::string>::iterator it;
|
||||||
it = find(this->VariableSections.begin(),
|
it = std::find(this->VariableSections.begin(),
|
||||||
this->VariableSections.end(),
|
this->VariableSections.end(),
|
||||||
section);
|
section);
|
||||||
/* if the section does not exist then add it */
|
/* if the section does not exist then add it */
|
||||||
if (it==this->VariableSections.end())
|
if (it==this->VariableSections.end())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue