coverity#707931 Uninitialized scalar field
Change-Id: I5c34f9bc96ee23fca6182740e3279de1485c61ea
This commit is contained in:
parent
85391d4ee6
commit
27f033ec70
@ -101,7 +101,11 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
inline SvToken::SvToken()
|
inline SvToken::SvToken()
|
||||||
: nType( SVTOKEN_EMPTY ) {}
|
: nLine(0)
|
||||||
|
, nColumn(0)
|
||||||
|
, nType( SVTOKEN_EMPTY )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
inline SvToken::SvToken( sal_uLong n )
|
inline SvToken::SvToken( sal_uLong n )
|
||||||
: nType( SVTOKEN_INTEGER ), nLong( n ) {}
|
: nType( SVTOKEN_INTEGER ), nLong( n ) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user