Made the wrong constructor private.
This commit is contained in:
parent
bec7cb1006
commit
def1a05788
@ -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();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user