diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
commit | 809b32fe59ee9923eebbcfc373d9eaab158083e9 (patch) | |
tree | cbb36213252d97bf3f7d21b301b4f65aa7a5342c /Source/cmMSDotNETGenerator.cxx | |
parent | 83a0759e479ee0718296a1bb8f6fb26e1b13500a (diff) | |
download | CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.zip CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.gz CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.bz2 |
ENH: remove several compiler warnings
Diffstat (limited to 'Source/cmMSDotNETGenerator.cxx')
-rw-r--r-- | Source/cmMSDotNETGenerator.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/cmMSDotNETGenerator.cxx b/Source/cmMSDotNETGenerator.cxx index f47b822..fb6921c 100644 --- a/Source/cmMSDotNETGenerator.cxx +++ b/Source/cmMSDotNETGenerator.cxx @@ -360,7 +360,7 @@ void cmMSDotNETGenerator::WriteProject(std::ostream& fout, const char* dspname, const char* dir, cmMSDotNETGenerator*, - const cmTarget& target + const cmTarget& ) { std::string d = cmSystemTools::ConvertToOutputPath(dir); @@ -377,7 +377,7 @@ void cmMSDotNETGenerator::WriteProject(std::ostream& fout, // the libraries it uses are also done here void cmMSDotNETGenerator::WriteProjectDepends(std::ostream& fout, const char* dspname, - const char* dir, + const char* , cmMSDotNETGenerator*, const cmTarget& target ) @@ -441,10 +441,10 @@ void cmMSDotNETGenerator::WriteProjectConfigurations(std::ostream& fout, const c // Write a dsp file into the SLN file, // Note, that dependencies from executables to // the libraries it uses are also done here -void cmMSDotNETGenerator::WriteExternalProject(std::ostream& fout, - const char* name, - const char* location, - const std::vector<std::string>& dependencies) +void cmMSDotNETGenerator::WriteExternalProject(std::ostream& , + const char* , + const char* , + const std::vector<std::string>& ) { cmSystemTools::Error("WriteExternalProject not implemented"); // fout << "#########################################################" @@ -907,9 +907,9 @@ void cmMSDotNETGenerator::OutputModuleDefinitionFile(std::ostream& fout, } void cmMSDotNETGenerator::OutputLibraryDirectories(std::ostream& fout, - const char* configName, - const char* libName, - const cmTarget &target) + const char*, + const char*, + const cmTarget &) { bool hasone = false; if(m_LibraryOutputPath.size()) @@ -1197,7 +1197,7 @@ void cmMSDotNETGenerator::WriteCustomRule(std::ostream& fout, void cmMSDotNETGenerator::WriteVCProjBeginGroup(std::ostream& fout, const char* group, - const char* filter) + const char* ) { fout << "\t\t<Filter\n" << "\t\t\tName=\"" << group << "\"\n" @@ -1288,7 +1288,7 @@ void cmMSDotNETGenerator::OutputTargetRules(std::ostream& fout, } void cmMSDotNETGenerator::WriteProjectStart(std::ostream& fout, const char *libName, - const cmTarget &target, + const cmTarget &, std::vector<cmSourceGroup> &) { fout << "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\n" |