Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
aligned.hpp
Go to the documentation of this file.
1#pragma once
2namespace fc {
3
4 template<unsigned int S, typename T=double>
5 struct aligned {
6 union {
8 char _data[S];
10 operator char*() { return _store._data; }
11 operator const char*()const { return _store._data; }
12 };
13
14}
namespace sysio::chain
Definition authority.cpp:3
#define S(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p)
#define T(meth, val, expected)
char _data[S]
Definition aligned.hpp:8
union fc::aligned::@5 _store