mirror of
https://github.com/opencv/opencv.git
synced 2025-01-21 16:43:11 +08:00
Merge pull request #17367 from anton-potapov:ap/fluid_fix_uninit_members
This commit is contained in:
commit
6202556fc0
@ -87,7 +87,7 @@ public:
|
||||
|
||||
private:
|
||||
std::unique_ptr<Priv> m_priv;
|
||||
const Cache* m_cache;
|
||||
const Cache* m_cache = nullptr;
|
||||
};
|
||||
|
||||
class GAPI_EXPORTS Buffer
|
||||
|
@ -245,7 +245,7 @@ class GAPI_EXPORTS Buffer::Priv
|
||||
|
||||
// Coordinate starting from which this buffer is assumed
|
||||
// to be read (with border not being taken into account)
|
||||
int m_readStart;
|
||||
int m_readStart = 0;
|
||||
cv::Rect m_roi;
|
||||
|
||||
friend void debugBufferPriv(const Buffer& p, std::ostream &os);
|
||||
|
Loading…
Reference in New Issue
Block a user