Skip to content

Commit

Permalink
fix(dev): friend not honored, temporarily make private members public
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Feb 14, 2024
1 parent 4998bce commit 71560b0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Foundation/include/Poco/AsyncNotificationCenter.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ class Foundation_API AsyncNotificationCenter: public NotificationCenter

static AsyncNotificationCenter& defaultCenter();

private:
// TODO: see testDefaultAsyncNotificationCenter for details
//private:
void start();
void stop();
void dequeue();
Expand All @@ -70,9 +71,6 @@ class Foundation_API AsyncNotificationCenter: public NotificationCenter
Adapter _ra;
std::atomic<bool> _started;
std::atomic<bool> _done;

// TODO: see testDefaultAsyncNotificationCenter for details
friend class NotificationCenterTest;
};


Expand Down

0 comments on commit 71560b0

Please sign in to comment.