This commit is contained in:
vczh
2021-10-24 00:28:19 -07:00
parent c96ab5fb82
commit d239be3f23
6 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ void GuiMain()
RegexMatch::List names;
splitter.Split(resourceNameList, false, names);
FOREACH(RegexMatch::Ref, name, names)
for (auto name : names)
{
auto resourceName = name->Result().Value();
#ifdef VCZH_64
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -39,7 +39,7 @@ namespace myapi
~App()
{
FOREACH(Ptr<IValueSubscription>, sub, subscriptions)
for (auto sub : subscriptions)
{
sub->Close();
}