mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
.cpp
git-svn-id: svn://ultimatepp.org/upp/trunk@8536 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
531c4db676
commit
7bda84de8c
3 changed files with 29 additions and 17 deletions
|
|
@ -362,9 +362,13 @@ void GetAllMacros(Md5Stream& md5, const String& id, Index<int>& segment_id);
|
|||
String Cpp::GetDependeciesMd5(const Vector<String>& m)
|
||||
{
|
||||
String r;
|
||||
for(int i = 0; i < m.GetCount(); i++) {
|
||||
Md5Stream md5;
|
||||
md5.Put(Join(namespace_stack, ";"));
|
||||
md5.Put('@');
|
||||
md5.Put(Join(namespace_using.GetKeys(), ";"));
|
||||
md5.Put('@');
|
||||
for(int i = 0; i < m.GetCount(); i++)
|
||||
GetAllMacros(md5, m[i], segment_id);
|
||||
}
|
||||
return md5.FinishString();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue