diff options
| author | 2019-07-28 01:46:48 +0200 | |
|---|---|---|
| committer | 2019-07-28 01:46:48 +0200 | |
| commit | 62ff4aad384c248b62f88a3e38d2e51043c5bb20 (patch) | |
| tree | 845d44164c62cd315c6d45dd634f5d3ee7d07557 /result | |
| parent | 740adada376edc90b6264f4f7560fd81ddd20090 (diff) | |
| download | OneRoll-62ff4aad384c248b62f88a3e38d2e51043c5bb20.tar.gz OneRoll-62ff4aad384c248b62f88a3e38d2e51043c5bb20.zip | |
initialize pointer on nullptr
Diffstat (limited to 'result')
| -rw-r--r-- | result/result.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/result/result.h b/result/result.h index a34c74f..76f3a8c 100644 --- a/result/result.h +++ b/result/result.h @@ -90,7 +90,7 @@ protected: QString m_id; private: - Result* m_previous; /// @brief + Result* m_previous= nullptr; /// @brief }; #endif // RESULT_H |