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 { class BNetworkCookieJar::Iterator {
public: public:
Iterator(const BNetworkCookieJar* map); Iterator(const Iterator& other);
~Iterator(); ~Iterator();
Iterator& operator=(const Iterator& other); Iterator& operator=(const Iterator& other);
@ -103,7 +103,7 @@ public:
void RemoveDomain(); void RemoveDomain();
private: private:
Iterator(const Iterator& other); Iterator(const BNetworkCookieJar* map);
void _FindNext(); void _FindNext();