| 318 | class LoadAverageReader { |
| 319 | public: |
| 320 | bool operator()(LoadAverage* stat) const { |
| 321 | return read_load_average(*stat); |
| 322 | }; |
| 323 | template <typename T, size_t offset> |
| 324 | static T get_field(void*) { |
| 325 | return *(T*)((char*)&CachedReader<LoadAverage>::get_value( |
nothing calls this directly
no test coverage detected