mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	disable unary minus when the type is not signed
silent warning C4146 on msvc
This commit is contained in:
		
							parent
							
								
									161be512fd
								
							
						
					
					
						commit
						8de154893c
					
				@ -32,6 +32,7 @@
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include <cmath>
 | 
			
		||||
#include <type_traits>
 | 
			
		||||
 | 
			
		||||
namespace Math {
 | 
			
		||||
 | 
			
		||||
@ -90,6 +91,7 @@ public:
 | 
			
		||||
    {
 | 
			
		||||
        x-=other.x; y-=other.y;
 | 
			
		||||
    }
 | 
			
		||||
    template<class = typename std::enable_if<std::is_signed<T>::value>::type>
 | 
			
		||||
    Vec2<decltype(-T{})> operator -() const
 | 
			
		||||
    {
 | 
			
		||||
        return MakeVec(-x,-y);
 | 
			
		||||
@ -220,6 +222,7 @@ public:
 | 
			
		||||
    {
 | 
			
		||||
        x-=other.x; y-=other.y; z-=other.z;
 | 
			
		||||
    }
 | 
			
		||||
    template<class = typename std::enable_if<std::is_signed<T>::value>::type>
 | 
			
		||||
    Vec3<decltype(-T{})> operator -() const
 | 
			
		||||
    {
 | 
			
		||||
        return MakeVec(-x,-y,-z);
 | 
			
		||||
@ -390,6 +393,7 @@ public:
 | 
			
		||||
    {
 | 
			
		||||
        x-=other.x; y-=other.y; z-=other.z; w-=other.w;
 | 
			
		||||
    }
 | 
			
		||||
    template<class = typename std::enable_if<std::is_signed<T>::value>::type>
 | 
			
		||||
    Vec4<decltype(-T{})> operator -() const
 | 
			
		||||
    {
 | 
			
		||||
        return MakeVec(-x,-y,-z,-w);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user