forked from qt-creator/qt-creator
ClangPchManager: Update PCHs if time stamps of dependencies changed
If there is a newer file than the last indexing or if a file is added or removed from the project or system PCH we have to reindex the project and maybe the system PCH. Change-Id: Ibce2a244190a79b5c422c469c065ddc11e44b2cb Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -117,16 +117,7 @@ public:
|
||||
push_back(std::move(string));
|
||||
}
|
||||
|
||||
BasicSmallStringVector clone() const
|
||||
{
|
||||
BasicSmallStringVector clonedVector;
|
||||
clonedVector.reserve(Base::size());
|
||||
|
||||
for (auto &&entry : *this)
|
||||
clonedVector.push_back(entry.clone());
|
||||
|
||||
return clonedVector;
|
||||
}
|
||||
BasicSmallStringVector clone() const { return *this; }
|
||||
|
||||
operator std::vector<std::string>() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user