We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c274641 commit 6e2f074Copy full SHA for 6e2f074
libraries/SoftwareSerial/SoftwareSerial.h
@@ -72,12 +72,12 @@ class SoftwareSerial : public Stream
72
static SoftwareSerial *active_object;
73
74
// private methods
75
- void recv() __attribute__((__always_inline__));
+ inline void recv() __attribute__((__always_inline__));
76
uint8_t rx_pin_read();
77
void tx_pin_write(uint8_t pin_state) __attribute__((__always_inline__));
78
void setTX(uint8_t transmitPin);
79
void setRX(uint8_t receivePin);
80
- void setRxIntMsk(bool enable) __attribute__((__always_inline__));
+ inline void setRxIntMsk(bool enable) __attribute__((__always_inline__));
81
82
// Return num - sub, or 1 if the result would be < 1
83
static uint16_t subtract_cap(uint16_t num, uint16_t sub);
0 commit comments