Skip to content

Commit 7411816

Browse files
authored
Merge pull request #35 from ciband/chore/warnings
chore: clear warnings about nested block comment
2 parents 290ed6d + 8fd75a2 commit 7411816

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/support.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
/*extern "C" void *__cxa_allocate_exception(size_t thrown_size){
2323
void * retval;
2424
25-
/*The amount of data needed is the size of the object *PLUS*
26-
the size of the header. The header is of struct __cxa_exception
27-
The address needs to be adjusted because the pointer we return
28-
should not point to the start of the memory, but to the point
29-
where the object being thrown actually starts
25+
// The amount of data needed is the size of the object *PLUS*
26+
// the size of the header. The header is of struct __cxa_exception
27+
// The address needs to be adjusted because the pointer we return
28+
// should not point to the start of the memory, but to the point
29+
// where the object being thrown actually starts
3030
3131
retval = malloc(thrown_size + sizeof(__cxa_exception));
3232

0 commit comments

Comments
 (0)