0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

libobs/callback: Remove unused static-inline function

This commit is contained in:
Norihiro Kamae 2024-07-30 00:04:08 +09:00 committed by Ryan Foster
parent 4837a3417f
commit 9a9975890e

View File

@ -41,12 +41,6 @@
* direct referencing.
*/
static inline void cd_serialize(uint8_t **pos, void *ptr, size_t size)
{
memcpy(ptr, *pos, size);
*pos += size;
}
static inline size_t cd_serialize_size(uint8_t **pos)
{
size_t size = 0;