From 37b73a908afa5806c883f493a76d5a6a3ed11235 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 27 Aug 2002 09:43:54 -0400 Subject: [PATCH] ENH: fix warnings --- Source/CMakeLists.txt | 1 - Source/cmLoadCommandCommand.cxx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 5aa921b9c1..b56f9d0477 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -11,7 +11,6 @@ cmSourceFile.cxx cmSystemTools.cxx cmDirectory.cxx cmDynamicLoader.cxx -cmCPluginAPI.cxx cmCommands.cxx cmTarget.cxx cmCustomCommand.cxx diff --git a/Source/cmLoadCommandCommand.cxx b/Source/cmLoadCommandCommand.cxx index 2c589dd461..a181f001ef 100644 --- a/Source/cmLoadCommandCommand.cxx +++ b/Source/cmLoadCommandCommand.cxx @@ -113,7 +113,7 @@ bool cmLoadedCommand::InitialPass(std::vector const& args) } // create argc and argv and then invoke the command - int argc = args.size(); + int argc = static_cast (args.size()); char **argv = NULL; if (argc) {