From f5d9fa7e78a2c5d57171a141020491d48222de22 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 6 Oct 2004 17:19:58 +0000 Subject: [PATCH] Undoxyfy internal method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16774 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Type.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/llvm/Type.h b/include/llvm/Type.h index b1543a022cf..06666cf7aa9 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -101,9 +101,8 @@ protected: /// inline void setAbstract(bool Val) { Abstract = Val; } - /// PromoteAbstractToConcrete - This is an internal method used to calculate - /// change "Abstract" from true to false when types are refined. - /// + // PromoteAbstractToConcrete - This is an internal method used to calculate + // change "Abstract" from true to false when types are refined. bool PromoteAbstractToConcrete(void *); unsigned getRefCount() const { return RefCount; }