Add explicit keywords.
[oota-llvm.git] / include / llvm / Analysis / FindUsedTypes.h
index 008e30c93efe4d6faa5e53288869d5f0f9294a88..6cafc89905568f82db2704a96fd9e54cda1f7bfb 100644 (file)
@@ -24,6 +24,9 @@ class Type;
 class FindUsedTypes : public ModulePass {
   std::set<const Type *> UsedTypes;
 public:
+  static char ID; // Pass identification, replacement for typeid
+  FindUsedTypes() : ModulePass((intptr_t)&ID) {}
+
   /// getTypes - After the pass has been run, return the set containing all of
   /// the types used in the module.
   ///