Add PImpl scaffolding

This commit is contained in:
2024-01-17 11:03:10 -08:00
parent 8edcd02f91
commit c6ff1ff64d
2 changed files with 40 additions and 1 deletions

View File

@@ -56,5 +56,6 @@ struct ConflictSet {
ConflictSet &operator=(const ConflictSet &) = delete;
private:
struct Impl *impl;
struct Impl;
Impl *impl;
};