ENH: Try to remove warning

This commit is contained in:
Andy Cedilnik 2004-03-09 07:50:45 -05:00
parent 0f4f9677fc
commit f93b1e6d48
2 changed files with 7 additions and 7 deletions

View File

@ -2271,7 +2271,7 @@ void cmMakefile::ConfigureString(const std::string& input,
} }
int cmMakefile::ConfigureFile(const char* infile, const char* outfile, int cmMakefile::ConfigureFile(const char* infile, const char* outfile,
int copyonly, int atOnly, int escapeQuotes) bool copyonly, bool atOnly, bool escapeQuotes)
{ {
std::string soutfile = outfile; std::string soutfile = outfile;
std::string sinfile = infile; std::string sinfile = infile;

View File

@ -551,6 +551,12 @@ public:
void ConfigureString(const std::string& input, std::string& output, void ConfigureString(const std::string& input, std::string& output,
bool atOnly, bool escapeQuotes); bool atOnly, bool escapeQuotes);
/**
* Copy file but change lines acording to ConfigureString
*/
int ConfigureFile(const char* infile, const char* outfile,
bool copyonly, bool atOnly, bool escapeQuotes);
/** /**
* find what source group this source is in * find what source group this source is in
*/ */
@ -630,12 +636,6 @@ public:
*/ */
std::string GetModulesFile(const char* name); std::string GetModulesFile(const char* name);
/**
* Copy file but change lines acording to ConfigureString
*/
int ConfigureFile(const char* infile, const char* outfile,
int copyonly, int atOnly, int escapeQuotes);
protected: protected:
// add link libraries and directories to the target // add link libraries and directories to the target
void AddGlobalLinkInformation(const char* name, cmTarget& target); void AddGlobalLinkInformation(const char* name, cmTarget& target);