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