MemLogEl Derived Type

type, private :: MemLogEl


Contents

Source Code


Components

Type Visibility Attributes Name Initial
character(len=25), public :: ObjectName = ''
character(len=25), public :: AllocRoutine = ''
character(len=25), public :: DeallocRoutine = 'not deallocated'
integer(kind=int64), public :: ObjectSize = 0

Source Code

    type :: MemLogEl
        character(len=25) :: ObjectName = ''
        character(len=25) :: AllocRoutine = ''
        character(len=25) :: DeallocRoutine = 'not deallocated'
        integer(int64) :: ObjectSize = 0
    end type MemLogEl