aboutsummaryrefslogtreecommitdiff
path: root/include/cxx_semantics.h
blob: f5d3dcaff2eec1251ce47e9abbcd335e67a20b7c (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