Made the wrong constructor private.

This commit is contained in:
Adrien Destugues 2014-06-11 19:27:03 +02:00
parent bec7cb1006
commit def1a05788
1 changed files with 2 additions and 2 deletions

View File

@ -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();