Fixed next_float for double and fixed ULP tests
This commit is contained in:
		
							parent
							
								
									90ad883d9e
								
							
						
					
					
						commit
						682979ddd8
					
				@ -214,7 +214,7 @@ namespace glm
 | 
				
			|||||||
#		if((GLM_LANG & GLM_LANG_CXX11_FLAG))
 | 
					#		if((GLM_LANG & GLM_LANG_CXX11_FLAG))
 | 
				
			||||||
			return std::nextafter(x, std::numeric_limits<double>::max());
 | 
								return std::nextafter(x, std::numeric_limits<double>::max());
 | 
				
			||||||
#		elif((GLM_COMPILER & GLM_COMPILER_VC) || ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_PLATFORM & GLM_PLATFORM_WINDOWS)))
 | 
					#		elif((GLM_COMPILER & GLM_COMPILER_VC) || ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_PLATFORM & GLM_PLATFORM_WINDOWS)))
 | 
				
			||||||
			return detail::nextafterf(x, std::numeric_limits<double>::max());
 | 
								return detail::nextafter(x, std::numeric_limits<double>::max());
 | 
				
			||||||
#		else
 | 
					#		else
 | 
				
			||||||
			return nextafter(x, DBL_MAX);
 | 
								return nextafter(x, DBL_MAX);
 | 
				
			||||||
#		endif
 | 
					#		endif
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user