|
@@ -30,7 +30,7 @@ import (
|
30
|
30
|
var (
|
31
|
31
|
javaRegExp = regexp.MustCompile(`^(?:[a-z]\w*\.)*([A-Z][\w\$]*\.(?:<init>|[a-z][\w\$]*(?:\$\d+)?))(?:(?:\()|$)`)
|
32
|
32
|
goRegExp = regexp.MustCompile(`^(?:[\w\-\.]+\/)+(.+)`)
|
33
|
|
- cppRegExp = regexp.MustCompile(`^(?:(?:\(anonymous namespace\)::)(\w+$))|(?:(?:\(anonymous namespace\)::)?(?:[_a-zA-Z]\w*\::|)*(_*[A-Z]\w*::~?[_a-zA-Z]\w*)$)`)
|
|
33
|
+ cppRegExp = regexp.MustCompile(`^(?:(?:\(anonymous namespace\)::)(\w+$))|(?:(?:\(anonymous namespace\)::)?(?:[_a-zA-Z]\w*\::|)*(_*[A-Z]\w*::~?[_a-zA-Z]\w*))`)
|
34
|
34
|
)
|
35
|
35
|
|
36
|
36
|
// Graph summarizes a performance profile into a format that is
|