1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Fix uninitialized value

This commit is contained in:
Dmitry Kurtaev
2020-01-15 12:58:12 +03:00
committed by Alexander Alekhin
parent b61b146f0e
commit aae15a4efa
@@ -98,7 +98,7 @@ private:
class SoftMaxSubgraph : public Subgraph
{
public:
SoftMaxSubgraph()
SoftMaxSubgraph() : axis(1)
{
int input = addNodeToMatch("");
int inpExp = addNodeToMatch("Exp", input);