This commit is contained in:
David Marcec
2018-07-29 10:24:38 +10:00
parent afa72e1725
commit d2e361533c

View File

@@ -12,7 +12,7 @@
namespace Service::Audio { namespace Service::Audio {
struct OpusDeleter { struct OpusDeleter {
void operator()(void* ptr) { void operator()(void* ptr) const {
operator delete(ptr); operator delete(ptr);
} }
}; };