diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-12 12:29:09 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-14 14:04:51 +0200 |
commit | 4824d134e1cc7a6b99b20238974264a54520c699 (patch) | |
tree | bb668975bfeaf7e84560dd6d3d87368bde1a0575 | |
parent | 2c3e2c9868754294af4db0943954d2e0ef3d4d5e (diff) |
AFBClient: impl ptr is const
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r-- | client-lib/AFBClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-lib/AFBClient.h b/client-lib/AFBClient.h index 964e2b0..79a2ce1 100644 --- a/client-lib/AFBClient.h +++ b/client-lib/AFBClient.h @@ -40,6 +40,6 @@ public: struct Impl; private: - Impl *d; + Impl *const d; }; #endif // AFBCLIENT_H |