0

Hoard(内存分配器)的geometrysizeclass.cpp 的源代码中,有一个未定义的函数。bool c2s(int)

它是什么,它有什么作用?

我正在尝试将hoard编译为VS2019中的库,忽略Makefile。

4

1 回答 1

2

头文件中:

/// Quickly compute the maximum size for a given size class.
static unsigned long c2s (int cl) {
  static size_t sizes[NUM_SIZECLASSES];
  static bool init = createTable ((size_t *) sizes);
  init = init;
  return sizes[cl];
}
于 2021-07-13T16:03:15.103 回答