From a4d99e27268fbb68a33d140701ae17a8a5177502 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Wed, 15 Aug 2012 19:39:22 +0700 Subject: [PATCH] Fix compilation. These lines are not needed. They even fail to compile on some compilers. Thanks to Han` and fred for reporting this. --- include/znc/Buffer.h | 2 -- include/znc/Utils.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/include/znc/Buffer.h b/include/znc/Buffer.h index c358eaf9..ee00575f 100644 --- a/include/znc/Buffer.h +++ b/include/znc/Buffer.h @@ -47,8 +47,6 @@ protected: class CBuffer : private std::deque { public: - typedef typename std::deque::size_type size_type; - CBuffer(unsigned int uLineCount = 100); ~CBuffer(); diff --git a/include/znc/Utils.h b/include/znc/Utils.h index c8f55556..f930baba 100644 --- a/include/znc/Utils.h +++ b/include/znc/Utils.h @@ -126,8 +126,6 @@ protected: */ class CTable : protected std::vector > { public: - typedef typename std::vector >::size_type size_type; - CTable() {} virtual ~CTable() {}