Skip to content

Commit aa0b23d

Browse files
committed
align style of function declaration
1 parent 86b468b commit aa0b23d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/frollapply.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#include "data.table.h"
22

3-
static inline void memcpy_sexp(SEXP dest, size_t offset, SEXP src, int count)
4-
{
3+
static inline void memcpy_sexp(SEXP dest, size_t offset, SEXP src, int count) {
54
switch (TYPEOF(dest)) {
65
case INTSXP: {
76
memcpy(INTEGER(dest), INTEGER_RO(src) + offset, count * sizeof(int));

0 commit comments

Comments
 (0)