diff options
Diffstat (limited to 'include/clang/Driver/Action.h')
-rw-r--r-- | include/clang/Driver/Action.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/clang/Driver/Action.h b/include/clang/Driver/Action.h index 6e317a0..4057e48 100644 --- a/include/clang/Driver/Action.h +++ b/include/clang/Driver/Action.h @@ -90,8 +90,6 @@ public: iterator end() { return Inputs.end(); } const_iterator begin() const { return Inputs.begin(); } const_iterator end() const { return Inputs.end(); } - - static bool classof(const Action *) { return true; } }; class InputAction : public Action { @@ -105,7 +103,6 @@ public: static bool classof(const Action *A) { return A->getKind() == InputClass; } - static bool classof(const InputAction *) { return true; } }; class BindArchAction : public Action { @@ -122,7 +119,6 @@ public: static bool classof(const Action *A) { return A->getKind() == BindArchClass; } - static bool classof(const BindArchAction *) { return true; } }; class JobAction : public Action { @@ -136,7 +132,6 @@ public: return (A->getKind() >= JobClassFirst && A->getKind() <= JobClassLast); } - static bool classof(const JobAction *) { return true; } }; class PreprocessJobAction : public JobAction { @@ -147,7 +142,6 @@ public: static bool classof(const Action *A) { return A->getKind() == PreprocessJobClass; } - static bool classof(const PreprocessJobAction *) { return true; } }; class PrecompileJobAction : public JobAction { @@ -158,7 +152,6 @@ public: static bool classof(const Action *A) { return A->getKind() == PrecompileJobClass; } - static bool classof(const PrecompileJobAction *) { return true; } }; class AnalyzeJobAction : public JobAction { @@ -169,7 +162,6 @@ public: static bool classof(const Action *A) { return A->getKind() == AnalyzeJobClass; } - static bool classof(const AnalyzeJobAction *) { return true; } }; class MigrateJobAction : public JobAction { @@ -180,7 +172,6 @@ public: static bool classof(const Action *A) { return A->getKind() == MigrateJobClass; } - static bool classof(const MigrateJobAction *) { return true; } }; class CompileJobAction : public JobAction { @@ -191,7 +182,6 @@ public: static bool classof(const Action *A) { return A->getKind() == CompileJobClass; } - static bool classof(const CompileJobAction *) { return true; } }; class AssembleJobAction : public JobAction { @@ -202,7 +192,6 @@ public: static bool classof(const Action *A) { return A->getKind() == AssembleJobClass; } - static bool classof(const AssembleJobAction *) { return true; } }; class LinkJobAction : public JobAction { @@ -213,7 +202,6 @@ public: static bool classof(const Action *A) { return A->getKind() == LinkJobClass; } - static bool classof(const LinkJobAction *) { return true; } }; class LipoJobAction : public JobAction { @@ -224,7 +212,6 @@ public: static bool classof(const Action *A) { return A->getKind() == LipoJobClass; } - static bool classof(const LipoJobAction *) { return true; } }; class DsymutilJobAction : public JobAction { @@ -235,7 +222,6 @@ public: static bool classof(const Action *A) { return A->getKind() == DsymutilJobClass; } - static bool classof(const DsymutilJobAction *) { return true; } }; class VerifyJobAction : public JobAction { @@ -245,7 +231,6 @@ public: static bool classof(const Action *A) { return A->getKind() == VerifyJobClass; } - static bool classof(const VerifyJobAction *) { return true; } }; } // end namespace driver |