Skip to content

Commit 6dce283

Browse files
add missing stddef includes
1 parent fe9ac6c commit 6dce283

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

decoder_modules/ryfi_decoder/src/ryfi/conv_codec.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
#include <stddef.h>
34
#include "dsp/processor.h"
45

56
extern "C" {

decoder_modules/ryfi_decoder/src/ryfi/framing.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22
#include "dsp/processor.h"
33
#include <stdint.h>
4+
#include <stddef.h>
45

56
namespace ryfi {
67
// Synchronization word.

decoder_modules/ryfi_decoder/src/ryfi/packet.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
#include <stddef.h>
34

45
namespace ryfi {
56
/**

decoder_modules/ryfi_decoder/src/ryfi/rs_codec.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
#include <stddef.h>
34
#include "dsp/processor.h"
45

56
extern "C" {

0 commit comments

Comments
 (0)