this is a follow-up of
fbbb336de961e433fc796dbdf6db650a836e9ef9,
which added an extraneous ")" at the end of the string literal.
and it breaks the build if ASan is enabled.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
// sanitizer warns like:
// ==3798016==Running thread 3797882 was not suspended. False leaks are possible.
// but we should not take it as a fatal error.
- const std::string matcher = ".*False leaks are possible.*");
+ const std::string matcher = ".*False leaks are possible.*";
#else
const std::string matcher = "^$";
#endif