From 9aa0578770f93dfc0b95397e4fb6abad336cb62f Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Fri, 28 Nov 2008 16:13:30 +0300 Subject: [PATCH] [6856] Fixed typo in not used function. This let build mangos with VS90/GCC. --- src/framework/Utilities/LinkedList.h | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/framework/Utilities/LinkedList.h b/src/framework/Utilities/LinkedList.h index 97fbce4ae..9e6f9249c 100644 --- a/src/framework/Utilities/LinkedList.h +++ b/src/framework/Utilities/LinkedList.h @@ -226,7 +226,7 @@ class LinkedListHead bool operator!=(const_reference _Right) const { // test for reference equality - return (_Ptr != &_Right)); + return (_Ptr != &_Right); } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 4ffc9d5e7..0fc59aede 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "6855" + #define REVISION_NR "6856" #endif // __REVISION_NR_H__