From 9b0434255f410a57b5a0325f9a51049fd81cb804 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 26 Sep 2018 12:12:48 +0200 Subject: [PATCH] Deleted useless file --- glm/ext/scalar_float_sized.hpp | 39 ---------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 glm/ext/scalar_float_sized.hpp diff --git a/glm/ext/scalar_float_sized.hpp b/glm/ext/scalar_float_sized.hpp deleted file mode 100644 index f257bfbc..00000000 --- a/glm/ext/scalar_float_sized.hpp +++ /dev/null @@ -1,39 +0,0 @@ -/// @ref ext_scalar_float_sized -/// @file glm/ext/scalar_float_sized.hpp -/// -/// @defgroup ext_scalar_float_sized GLM_EXT_scalar_float_sized -/// @ingroup ext -/// -/// Exposes sized float scalar types. -/// -/// Include to use the features of this extension. -/// -/// @see ext_scalar_int_sized -/// @see ext_scalar_uint_sized - -#pragma once - -#include "../detail/setup.hpp" - -#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) -# pragma message("GLM: GLM_EXT_scalar_float_sized extension included") -#endif - -namespace glm -{ - /// @addtogroup ext_scalar_float_sized - /// @{ - - /// Single precision floating-point numbers. - typedef float float32; - - -# ifndef GLM_FORCE_SINGLE_ONLY - - /// Double precision floating-point numbers. - typedef double float64; - -# endif//GLM_FORCE_SINGLE_ONLY - - /// @} -}//namespace glm