diff options
Diffstat (limited to 'include/llvm/Type.h')
-rw-r--r-- | include/llvm/Type.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 18b8adb0ce..20a3d6d03e 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -246,7 +246,8 @@ public: /// getNumContainedTypes - Return the number of types in the derived type. /// - unsigned getNumContainedTypes() const { return ContainedTys.size(); } + typedef std::vector<PATypeHandle>::size_type size_type; + size_type getNumContainedTypes() const { return ContainedTys.size(); } //===--------------------------------------------------------------------===// // Static members exported by the Type class itself. Useful for getting |