aboutsummaryrefslogtreecommitdiff
path: root/lib/connectiondata.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-21 15:18:20 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-27 16:51:35 +0900
commitd803b04d37e82dd7f8b901d29e04851d97d1f4eb (patch)
treea80ac9a85fa83ea72bb633537f7b70f6e1eb3ec8 /lib/connectiondata.h
parent59c4996a602e9eeae4e3bfc0210ff15f957df38f (diff)
downloadlibquotient-d803b04d37e82dd7f8b901d29e04851d97d1f4eb.tar.gz
libquotient-d803b04d37e82dd7f8b901d29e04851d97d1f4eb.zip
Tighten the code; add a missing #include
MSVC warns on class/struct mismatch and errors on std::array because `<array>` is not indirectly included on that platform.
Diffstat (limited to 'lib/connectiondata.h')
-rw-r--r--lib/connectiondata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connectiondata.h b/lib/connectiondata.h
index 5cd7c3c7..b367c977 100644
--- a/lib/connectiondata.h
+++ b/lib/connectiondata.h
@@ -57,7 +57,7 @@ public:
QByteArray generateTxnId() const;
private:
- struct Private;
+ class Private;
std::unique_ptr<Private> d;
};
} // namespace Quotient