Skip to content

Commit daec9b4

Browse files
committed
Move Doxygen to header
Following the new coding standard.
1 parent 3de7678 commit daec9b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/util/allocate_objects.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,6 @@ void allocate_objectst::mark_created_symbols_as_input(code_blockt &init_code)
266266
}
267267
}
268268

269-
/// Create code allocating object of size `size` and assigning it to `lhs`
270-
/// \param lhs : pointer which will be allocated
271-
/// \param size : size of the object
272-
/// \return code allocation object and assigning `lhs`
273269
code_assignt make_allocate_code(const symbol_exprt &lhs, const exprt &size)
274270
{
275271
side_effect_exprt alloc(ID_allocate, lhs.type(), lhs.source_location());

src/util/allocate_objects.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ class allocate_objectst
9595
const irep_idt &basename_prefix);
9696
};
9797

98+
/// Create code allocating object of size `size` and assigning it to `lhs`
99+
/// \param lhs : pointer which will be allocated
100+
/// \param size : size of the object
101+
/// \return code allocation object and assigning `lhs`
98102
code_assignt make_allocate_code(const symbol_exprt &lhs, const exprt &size);
99103

100104
#endif // CPROVER_UTIL_ALLOCATE_OBJECTS_H

0 commit comments

Comments
 (0)