From 25a4ff1c8ed3ca7dfb73e1136bf84ece849ed4bf Mon Sep 17 00:00:00 2001 From: David Williams Date: Wed, 26 Dec 2012 20:27:29 +0000 Subject: [PATCH] Added comment. --- .../PolyVoxCore/include/PolyVoxCore/Impl/ErrorHandling.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/library/PolyVoxCore/include/PolyVoxCore/Impl/ErrorHandling.h b/library/PolyVoxCore/include/PolyVoxCore/Impl/ErrorHandling.h index b4efd2f9..88415f74 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/Impl/ErrorHandling.h +++ b/library/PolyVoxCore/include/PolyVoxCore/Impl/ErrorHandling.h @@ -69,6 +69,12 @@ freely, subject to the following restrictions: #endif +/* + * Static Assertions + * ----------------- + * These map to C+11 static_assert if available or our own implentation otherwise. + */ + #if defined(HAS_CXX11_STATIC_ASSERT) //In this case we can just use static_assert #define POLYVOX_STATIC_ASSERT static_assert