mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 19:59:18 +02:00
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
7 lines
174 B
C++
7 lines
174 B
C++
struct PositivePrivate {
|
|
private:
|
|
PositivePrivate();
|
|
PositivePrivate(const PositivePrivate &);
|
|
PositivePrivate &operator=(PositivePrivate &&);
|
|
~PositivePrivate();
|
|
};
|