|
@@ -886,7 +886,7 @@ string ClassFunctionAnalyzer::GetContainsClassName() const
|
|
|
return result;
|
|
return result;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-string GetFunctionLocation(xml_node memberdef)
|
|
|
|
|
|
|
+string GetFunctionDeclaration(xml_node memberdef)
|
|
|
{
|
|
{
|
|
|
assert(IsMemberdef(memberdef));
|
|
assert(IsMemberdef(memberdef));
|
|
|
assert(ExtractKind(memberdef) == "function");
|
|
assert(ExtractKind(memberdef) == "function");
|
|
@@ -904,8 +904,6 @@ string GetFunctionLocation(xml_node memberdef)
|
|
|
if (IsExplicit(memberdef))
|
|
if (IsExplicit(memberdef))
|
|
|
result = "explicit " + result;
|
|
result = "explicit " + result;
|
|
|
|
|
|
|
|
- result += " | File: " + ExtractHeaderFile(memberdef);
|
|
|
|
|
-
|
|
|
|
|
if (IsTemplate(memberdef))
|
|
if (IsTemplate(memberdef))
|
|
|
{
|
|
{
|
|
|
string t = "";
|
|
string t = "";
|
|
@@ -935,6 +933,11 @@ string GetFunctionLocation(xml_node memberdef)
|
|
|
return result;
|
|
return result;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+string GetFunctionLocation(xml_node memberdef)
|
|
|
|
|
+{
|
|
|
|
|
+ return GetFunctionDeclaration(memberdef) + " | File: " + ExtractHeaderFile(memberdef);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
bool ClassFunctionAnalyzer::IsConst() const
|
|
bool ClassFunctionAnalyzer::IsConst() const
|
|
|
{
|
|
{
|
|
|
string constAttr = memberdef_.attribute("const").value();
|
|
string constAttr = memberdef_.attribute("const").value();
|
|
@@ -1028,7 +1031,6 @@ string ClassVariableAnalyzer::GetLocation() const
|
|
|
string result = match[1].str() + match[2].str();
|
|
string result = match[1].str() + match[2].str();
|
|
|
|
|
|
|
|
result = BeautifyDefinition(result);
|
|
result = BeautifyDefinition(result);
|
|
|
-
|
|
|
|
|
result += " | File: " + GetHeaderFile();
|
|
result += " | File: " + GetHeaderFile();
|
|
|
|
|
|
|
|
if (!classAnalyzer_.usingLocation_.empty())
|
|
if (!classAnalyzer_.usingLocation_.empty())
|