Skip to content
Snippets Groups Projects
Commit 43131a7c authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'RegularExpression-match-init'


cdd52ce1 RegularExpression: Initialize RegularExpressionMatch arrays fully

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !156
parents 65366723 cdd52ce1
No related branches found
No related tags found
No related merge requests found
......@@ -70,10 +70,10 @@ private:
* \brief Creates an invalid match object
*/
inline RegularExpressionMatch::RegularExpressionMatch()
: startp{}
, endp{}
, searchstring{}
{
startp[0] = nullptr;
endp[0] = nullptr;
searchstring = nullptr;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment