From c0eba6a127a950e05af7ad116c95288a4fa66a17 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 20 Jul 2014 16:06:35 +0200 Subject: Fixed gcc build without pch --- src/server/shared/Utilities/Util.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/server/shared/Utilities/Util.h') diff --git a/src/server/shared/Utilities/Util.h b/src/server/shared/Utilities/Util.h index c384a6eeaed..c95e0e3cfa3 100644 --- a/src/server/shared/Utilities/Util.h +++ b/src/server/shared/Utilities/Util.h @@ -351,11 +351,6 @@ bool IsIPAddress(char const* ipaddress); uint32 CreatePIDFile(const std::string& filename); std::string ByteArrayToHexStr(uint8 const* bytes, uint32 length, bool reverse = false); -#endif - -//handler for operations on large flags -#ifndef _FLAG96 -#define _FLAG96 // simple class for not-modifyable list template @@ -402,13 +397,6 @@ public: part[2] = p3; } - flag96(uint64 p1, uint32 p2) - { - part[0] = (uint32)(p1 & UI64LIT(0x00000000FFFFFFFF)); - part[1] = (uint32)((p1 >> 32) & UI64LIT(0x00000000FFFFFFFF)); - part[2] = p2; - } - inline bool IsEqual(uint32 p1 = 0, uint32 p2 = 0, uint32 p3 = 0) const { return (part[0] == p1 && part[1] == p2 && part[2] == p3); -- cgit v1.2.3