We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff62142 commit 3e4ea0bCopy full SHA for 3e4ea0b
src/AppleMIDI.h
@@ -72,7 +72,7 @@ class AppleMIDISession
72
return *this;
73
}
74
#ifdef USE_EXT_CALLBACKS
75
- void setHandleException(void (*fptr)(const ssrc_t &, const Exception &, const int32_t value))
+ AppleMIDISession &setHandleException(void (*fptr)(const ssrc_t &, const Exception &, const int32_t value))
76
{
77
_exceptionCallback = fptr;
78
src/utility/Deque.h
@@ -1,5 +1,7 @@
1
#pragma once
2
3
+BEGIN_APPLEMIDI_NAMESPACE
4
+
5
template<typename T, size_t Size>
6
class Deque {
7
// class iterator;
@@ -209,3 +211,5 @@ void Deque<T, Size>::clear()
209
211
_tail = -1;
210
212
_head = 0;
213
214
215
+END_APPLEMIDI_NAMESPACE
0 commit comments