Udipe 1.0
Solving the riddle of high-throughput UDP
Loading...
Searching...
No Matches
nodiscard.h
Go to the documentation of this file.
1#pragma once
2
10
11
16#ifdef __GNUC__
17 #define UDIPE_NODISCARD __attribute__((warn_unused_result))
18#else
19 // TODO: Replace with [[nodiscard]] once the project is ready to move to C23
20 #define UDIPE_NODISCARD
21#endif