@@ -142,7 +142,7 @@ The SPLICECAPI provides several global functions. These can be used to initializ
142
142
char const * GetSpliceVersion();
143
143
144
144
// Constructs a FabricCore client
145
- FabricCore::Client ConstructClient(int guarded = - 1, FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background);
145
+ FabricCore::Client ConstructClient(int guarded = 1, FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background);
146
146
147
147
// Destroys a FabricCore client
148
148
bool DestroyClient(bool force = false);
@@ -1418,7 +1418,7 @@ Class Outline
1418
1418
DGGraph();
1419
1419
1420
1420
// constructor which creates a FabricCore::Client and initiates an internal FabricCore::DGNode
1421
- DGGraph(const char * name, int guarded = - 1, FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background);
1421
+ DGGraph(const char * name, int guarded = 1, FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background);
1422
1422
1423
1423
// copy constructor
1424
1424
DGGraph(DGGraph const & other);
@@ -2078,7 +2078,7 @@ namespace FabricSplice
2078
2078
return result;
2079
2079
}
2080
2080
2081
- inline FabricCore::Client ConstructClient (int guarded = - 1 , FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background)
2081
+ inline FabricCore::Client ConstructClient (int guarded = 1 , FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background)
2082
2082
{
2083
2083
FabricCore::Client result;
2084
2084
FECS_constructClient (result, guarded, optType);
@@ -4030,7 +4030,7 @@ namespace FabricSplice
4030
4030
mRef = NULL ;
4031
4031
}
4032
4032
4033
- DGGraph (const char * name, int guarded = - 1 , FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background)
4033
+ DGGraph (const char * name, int guarded = 1 , FabricCore::ClientOptimizationType optType = FabricCore::ClientOptimizationType_Background)
4034
4034
{
4035
4035
mRef = FECS_DGGraph_construct (name, guarded, optType);
4036
4036
Exception::MaybeThrow ();
0 commit comments