AtomicFile: Make the forward impl declaration private

This is more consistent with the intent of the code.

Signed-off-by: Shaun Ruffell <sruffell@sruffell.net>
This commit is contained in:
Shaun Ruffell 2021-07-06 21:50:17 -05:00 committed by Thomas Lauf
parent 51d90114aa
commit 12696bf40c
2 changed files with 4 additions and 9 deletions

View file

@ -70,10 +70,8 @@ public:
static void finalize_all ();
static void reset ();
public:
struct impl;
private:
struct impl;
std::shared_ptr <impl> pimpl;
};