Skip to content

Commit

Permalink
fixed confliciting name (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
pasotee committed Sep 9, 2023
1 parent a36a42f commit 912f42e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/inc/brainflow_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@ class BrainFlowArray
}

/// fill already preallocated buffer
void fill (T *ptr, int size)
void fill (T *ptr, int num)
{
memcpy (origin, ptr, sizeof (T) * size);
memcpy (origin, ptr, sizeof (T) * num);
}
};

Expand Down

0 comments on commit 912f42e

Please sign in to comment.