]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/nowide/standalone/static_assert.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / nowide / standalone / static_assert.hpp
diff --git a/ceph/src/boost/libs/nowide/standalone/static_assert.hpp b/ceph/src/boost/libs/nowide/standalone/static_assert.hpp
new file mode 100644 (file)
index 0000000..b772f30
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef NOWIDE_STATIC_ASSERT_HPP
+#define NOWIDE_STATIC_ASSERT_HPP
+
+#define NOWIDE_STATIC_ASSERT(c) static_assert(c, #c)
+#define NOWIDE_STATIC_ASSERT_MSG(c, msg) static_assert(c, msg)
+
+#endif