Skip to content

Commit ef45981

Browse files
committedApr 10, 2016
Update release
1 parent 85837f8 commit ef45981

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎Release/GacUI.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -44154,6 +44154,7 @@ IGuiResourceResolverManager
4415444154
case IGuiResourceTypeResolver_Precompile::PerPass:
4415544155
perPassResolvers.Add(i, resolver->GetType());
4415644156
break;
44157+
default:;
4415744158
}
4415844159
}
4415944160
}

‎Release/GacUICompiler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ namespace vl
14051405
{
14061406
errors.Add(L"Failed to compile workflow scripts in: " + path);
14071407

1408-
using ErrorGroup = Pair<int, LazyList<Ptr<ParsingError>>>;
1408+
using ErrorGroup = Pair<vint, LazyList<Ptr<ParsingError>>>;
14091409
List<ErrorGroup> errorGroups;
14101410
CopyFrom(
14111411
errorGroups,
@@ -6674,7 +6674,7 @@ Workflow_GenerateInstanceClass
66746674
Ptr<ITypeInfo> ctorType;
66756675
if (!beforePrecompile)
66766676
{
6677-
if (ctorTd = description::GetTypeDescriptor(context->className + L"<Ctor>"))
6677+
if ((ctorTd = description::GetTypeDescriptor(context->className + L"<Ctor>")))
66786678
{
66796679
auto elementType = MakePtr<TypeInfoImpl>(ITypeInfo::TypeDescriptor);
66806680
elementType->SetTypeDescriptor(ctorTd);

‎Release/GacUICompiler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ GuiVrtualTypeInstanceLoader
12631263
}
12641264
}
12651265

1266-
Ptr<workflow::WfBaseConstructorCall> CreateRootInstance(const TypeInfo& typeInfo, Ptr<workflow::WfExpression> controlTemplate, collections::List<WString>& errors)
1266+
Ptr<workflow::WfBaseConstructorCall> CreateRootInstance(const TypeInfo& typeInfo, Ptr<workflow::WfExpression> controlTemplate, collections::List<WString>& errors)override
12671267
{
12681268
auto controlType = TypeInfoRetriver<TControl>::CreateTypeInfo();
12691269

0 commit comments

Comments
 (0)