We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c82566c commit 4c2f496Copy full SHA for 4c2f496
src/BLEMIDI_Transport.h
@@ -183,7 +183,6 @@ class BLEMIDI_Transport
183
public:
184
// callbacks
185
void (*_connectedCallback)() = nullptr;
186
- void (*_connectedCallbackDeviceName)(char *) = nullptr;
187
void (*_disconnectedCallback)() = nullptr;
188
void (*_connectedCallbackDeviceName)(char *) = nullptr;
189
@@ -200,12 +199,6 @@ class BLEMIDI_Transport
200
199
return *this;
201
}
202
203
- BLEMIDI_Transport &setHandleConnected(void (*fptr)(char*))
204
- {
205
- _connectedCallbackDeviceName= fptr;
206
- return *this;
207
- }
208
-
209
BLEMIDI_Transport &setHandleConnected(void (*fptr)(char*))
210
{
211
_connectedCallbackDeviceName= fptr;
0 commit comments