From def1a057886fdf50a10cab95649ac96c269a285c Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 11 Jun 2014 19:27:03 +0200 Subject: [PATCH] Made the wrong constructor private. --- headers/os/net/NetworkCookieJar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/os/net/NetworkCookieJar.h b/headers/os/net/NetworkCookieJar.h index c6639b9af6..6efba2642f 100644 --- a/headers/os/net/NetworkCookieJar.h +++ b/headers/os/net/NetworkCookieJar.h @@ -91,7 +91,7 @@ private: class BNetworkCookieJar::Iterator { public: - Iterator(const BNetworkCookieJar* map); + Iterator(const Iterator& other); ~Iterator(); Iterator& operator=(const Iterator& other); @@ -103,7 +103,7 @@ public: void RemoveDomain(); private: - Iterator(const Iterator& other); + Iterator(const BNetworkCookieJar* map); void _FindNext();