| 428 | // This is to determine is we need to include our slab of bytes in garbage collection |
| 429 | template<typename T> |
| 430 | inline bool TypeContainsPointers(T *) { return true; } |
| 431 | template<> inline bool TypeContainsPointers(bool *) { return false; } |
| 432 | template<> inline bool TypeContainsPointers(int *) { return false; } |
| 433 | template<> inline bool TypeContainsPointers(double *) { return false; } |