Skip to content

Commit

Permalink
Do not attempt handling va_list.
Browse files Browse the repository at this point in the history
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
  • Loading branch information
hidmic committed Jul 28, 2020
1 parent ed358dc commit e83a125
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions include/mimick/literal.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ T (& mmk_assign(T (&dst)[N], T * src))[N] {
}

va_list & mmk_assign(va_list & dst, va_list src) {
if (src) {
va_copy(dst, src);
}
// no-op
return dst;
}

Expand Down

0 comments on commit e83a125

Please sign in to comment.