summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-24 14:09:24 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-24 14:09:24 (GMT)
commit2cae0ce38974a97965057993538a9a6f4cf92141 (patch)
treec7b7301968b26515b179f4bcdb323c8be0f19206 /Source/cmGlobalUnixMakefileGenerator3.h
parent65613537e30efd9edb0e269778d6a5fcab9e9c89 (diff)
downloadCMake-2cae0ce38974a97965057993538a9a6f4cf92141.zip
CMake-2cae0ce38974a97965057993538a9a6f4cf92141.tar.gz
CMake-2cae0ce38974a97965057993538a9a6f4cf92141.tar.bz2
ENH: fix compiler warnings and posibly java test
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h
index 1cce9a8..90e3be1 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.h
+++ b/Source/cmGlobalUnixMakefileGenerator3.h
@@ -125,7 +125,6 @@ public:
// returns true if a progress rule should be added
int ShouldAddProgressRule();
- int GetNumberOfSourceFiles() {return this->NumberOfSourceFiles; }
int GetNumberOfCompilableSourceFilesForTarget(cmTarget &tgt);
int GetTargetTotalNumberOfSourceFiles(cmTarget& target);
@@ -183,8 +182,8 @@ protected:
typedef std::map<cmStdString, cmStdString> MultipleOutputPairsType;
MultipleOutputPairsType MultipleOutputPairs;
- size_t NumberOfSourceFiles;
- size_t NumberOfSourceFilesWritten;
+ int NumberOfSourceFiles;
+ int NumberOfSourceFilesWritten;
std::map<cmStdString, std::vector<cmTarget *> > TargetDependencies;
std::map<cmStdString, int > TargetSourceFileCount;