blob: 68c124183fbbeb1a4bd38044bfd2bf81f68d84d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <type_traits>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
template <class T>
requires std::is_trivial_v<T>
T UnalignedLoad(const T* ptr);
template <class T>
requires std::is_trivial_v<T>
void UnalignedStore(T* ptr, const T& value);
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
#define UNALIGNED_INL_H_
#include "unaligned-inl.h"
#undef UNALIGNED_INL_H_
|