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:
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);
|
||||
|
||||
Reference in New Issue
Block a user