summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-12-18 15:06:09 (GMT)
committerBrad King <brad.king@kitware.com>2008-12-18 15:06:09 (GMT)
commitf8c0dc27b56495a178cc711b594cd0f6395d942d (patch)
treebe53a1eec532313708f55f86ceab4f7e97c4cf27
parent62a9fc7e945d89d67e41e7d8b220694150f335bf (diff)
downloadCMake-f8c0dc27b56495a178cc711b594cd0f6395d942d.zip
CMake-f8c0dc27b56495a178cc711b594cd0f6395d942d.tar.gz
CMake-f8c0dc27b56495a178cc711b594cd0f6395d942d.tar.bz2
STYLE: Remove useless install generator typedefs
The cmInstall*Generator classes all derive from cmInstallGenerator which provides the Indent typedef so they do not need to provide it
-rw-r--r--Source/cmInstallDirectoryGenerator.h1
-rw-r--r--Source/cmInstallExportGenerator.h1
-rw-r--r--Source/cmInstallFilesGenerator.h1
-rw-r--r--Source/cmInstallTargetGenerator.h1
4 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h
index b35771e..9810d56 100644
--- a/Source/cmInstallDirectoryGenerator.h
+++ b/Source/cmInstallDirectoryGenerator.h
@@ -35,7 +35,6 @@ public:
virtual ~cmInstallDirectoryGenerator();
protected:
- typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
std::vector<std::string> Directories;
std::string FilePermissions;
diff --git a/Source/cmInstallExportGenerator.h b/Source/cmInstallExportGenerator.h
index 24f4aac..9ee69f4 100644
--- a/Source/cmInstallExportGenerator.h
+++ b/Source/cmInstallExportGenerator.h
@@ -42,7 +42,6 @@ public:
protected:
typedef std::vector<cmTargetExport*> ExportSet;
- typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScript(std::ostream& os);
virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent);
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h
index d8a740d..377975b 100644
--- a/Source/cmInstallFilesGenerator.h
+++ b/Source/cmInstallFilesGenerator.h
@@ -35,7 +35,6 @@ public:
virtual ~cmInstallFilesGenerator();
protected:
- typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
std::vector<std::string> Files;
bool Programs;
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 0f587e6..aa4db86 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -64,7 +64,6 @@ public:
bool IsImportLibrary() const { return this->ImportLibrary; }
protected:
- typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScript(std::ostream& os);
virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent);
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);