diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
commit | 865ec96644ae08e66b9a4a15bd7cddde46d2e2b0 (patch) | |
tree | 3f1a58bd35606684aa8501c2e629f24855e37421 /Source/cmMakeDepend.h | |
parent | 7b47a5d2ef1bb303b25a051d588a54616e44cbe9 (diff) | |
download | CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.zip CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.gz CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.bz2 |
major changes to support multiple libraries and source lists
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r-- | Source/cmMakeDepend.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h index e7e6f5d..731150f 100644 --- a/Source/cmMakeDepend.h +++ b/Source/cmMakeDepend.h @@ -35,7 +35,7 @@ struct cmDependInformation cmDependInformation() { m_DependDone = false; - m_ClassFileIndex = -1; + m_ClassFileIndex = 0; } /** @@ -56,9 +56,9 @@ struct cmDependInformation /** * The index into the cmMakefile::m_Classes list. - * The index value of -1 indicates that it is not in the list. + * The index value of 0 indicates that it is not in the list. */ - int m_ClassFileIndex; + cmClassFile *m_ClassFileIndex; /** * This flag indicates whether dependency checking has been |