| 108 | void operator=(const ClassName&) |
| 109 | |
| 110 | template <typename T> int NELEMS(const T& x) // number of elems in an array |
| 111 | { |
| 112 | return int(sizeof(x) / sizeof((x)[0])); |
| 113 | } |
| 114 | |
| 115 | // The NSIZE and STRNLEN utility functions prevent the following |
| 116 | // warnings from certain compilers: |
no outgoing calls
no test coverage detected