Closed kv-be closed 5 months ago
constant C_HIERARCHY_NODE_NAME_LENGTH : natural := C_LOG_SCOPE_WIDTH; constant C_EMPTY_NODE : t_hierarchy_node := ((1 to C_HIERARCHY_NODE_NAME_LENGTH => ' '), (others => (others => 0)), (others => 0), (others => true));
problem is that the padded spaces to align the : are inserted at the wrong place
seems to be solved
constant C_HIERARCHY_NODE_NAME_LENGTH : natural := C_LOG_SCOPE_WIDTH; constant C_EMPTY_NODE : t_hierarchy_node := ((1 to C_HIERARCHY_NODE_NAME_LENGTH => ' '), (others => (others => 0)), (others => 0), (others => true));
problem is that the padded spaces to align the : are inserted at the wrong place