blob: 29e51c366f00877d93fc7fe6b64473fe3172f98c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CXX_SEMANTICS_H
#define CXX_SEMANTICS_H
#ifndef _WINDOWS
#define __packed __attribute__((__packed__))
#else
#define __packed
#endif
/*
* There's no need to include Boost for a simple subset this project needs.
*/
namespace semantics {
class non_constructible {
non_constructible() {}
};
}
#endif
|