From c4aec144256e3f27fedd8f8de03e10cc08eecab8 Mon Sep 17 00:00:00 2001 From: Mateusz Zalega Date: Thu, 22 Oct 2015 22:41:18 +0200 Subject: Initial --- include/cxx_semantics.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/cxx_semantics.h (limited to 'include/cxx_semantics.h') diff --git a/include/cxx_semantics.h b/include/cxx_semantics.h new file mode 100644 index 0000000..f5d3dca --- /dev/null +++ b/include/cxx_semantics.h @@ -0,0 +1,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 -- cgit v1.2.1