logic: improved recording of template member specializations

* implemented recording template member specialitation relations for fields, static variables, member classes and enums
* added windows only tests that index whole projects (Bullet & Box2D) to prevent regression
This commit is contained in:
mlangkabel
2017-09-13 18:03:29 +02:00
parent 3f06724cad
commit 687bfad4a6
222 changed files with 95747 additions and 22 deletions
+10
View File
@@ -97,6 +97,16 @@ std::vector<std::string> TextAccess::readFile(const FilePath& filePath)
}
srcFile.close();
if (!result.empty())
{
std::string last = result.back().substr(0, result.back().size() - 1);
result.pop_back();
if (!last.empty())
{
result.push_back(last);
}
}
return result;
}