renamed to PreAlloc instead of PreMalloc

This commit is contained in:
2023-07-20 14:28:50 +08:00
parent 09eec7e7df
commit 8bb5374ab1
6 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ namespace hgl
/**
* 多线程环形数据流,用于随时被读或写的情况以及在多线程应用中同时被读与写的情况。
*/
template<typename T> class RingBuffer:protected ThreadMutex ///多线程环形数据流
template<typename T> class RingBuffer:protected ThreadMutex ///多线程环形数据流
{
protected: