Remove some hopefully unnecessary references to global namespace

This commit is contained in:
Chris Cannam
2021-10-12 16:27:19 +01:00
parent 9394a9ad09
commit e868ff32de
3 changed files with 39 additions and 9 deletions

View File

@@ -343,12 +343,12 @@ public:
abort();
#endif
}
return ::RubberBand::allocate<T>(n);
return RubberBand::allocate<T>(n);
}
void
deallocate(T *const p, const size_t) const {
::RubberBand::deallocate(p);
RubberBand::deallocate(p);
}
template <typename U>