safe_memory_reader-inl.h 529 B

12345678910111213141516171819
  1. #ifndef SAFE_MEMORY_READER_INL_H_
  2. #error "Direct inclusion of this file is not allowed, include safe_memory_reader.h"
  3. // For the sake of sane code completion.
  4. #include "safe_memory_reader.h"
  5. #endif
  6. namespace NYT {
  7. ////////////////////////////////////////////////////////////////////////////////
  8. template <class T>
  9. bool TSafeMemoryReader::Read(const void* addr, T* value)
  10. {
  11. return ReadRaw(addr, value, sizeof(*value));
  12. }
  13. ////////////////////////////////////////////////////////////////////////////////
  14. } // namespace NYT