From b81b774c511a1271845f61bdb9923640e9f0bbe5 Mon Sep 17 00:00:00 2001 From: Lynix Date: Thu, 27 Oct 2016 10:27:17 +0200 Subject: [PATCH] Core/ObjectRef: Fix <= operator between two ObjectRef --- include/Nazara/Core/ObjectRef.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Nazara/Core/ObjectRef.hpp b/include/Nazara/Core/ObjectRef.hpp index d1cd13ec0..6a69a22ee 100644 --- a/include/Nazara/Core/ObjectRef.hpp +++ b/include/Nazara/Core/ObjectRef.hpp @@ -56,7 +56,7 @@ namespace Nz template bool operator<(const T& lhs, const ObjectRef& rhs); template bool operator<(const ObjectRef& lhs, const T& rhs); - template bool operator<=(const ObjectRef, const ObjectRef& rhs); + template bool operator<=(const ObjectRef& lhs, const ObjectRef& rhs); template bool operator<=(const T& lhs, const ObjectRef& rhs); template bool operator<=(const ObjectRef& lhs, const T& rhs);