2ea8997135
GitOrigin-RevId: 5bc8b980b9178ef9a4bb622320cf34e59ea2ea10
20 lines
679 B
Diff
20 lines
679 B
Diff
diff --git a/test/Glacier2/dynamicFiltering/TestControllerI.h b/test/Glacier2/dynamicFiltering/TestControllerI.h
|
|
index 7e21639..1279200 100644
|
|
--- a/test/Glacier2/dynamicFiltering/TestControllerI.h
|
|
+++ b/test/Glacier2/dynamicFiltering/TestControllerI.h
|
|
@@ -21,13 +21,12 @@ struct SessionTuple
|
|
{
|
|
Glacier2::SessionPrx session;
|
|
Glacier2::SessionControlPrx sessionControl;
|
|
- bool configured;
|
|
+ bool configured = false;
|
|
|
|
SessionTuple() {}
|
|
SessionTuple(Glacier2::SessionPrx s, Glacier2::SessionControlPrx control):
|
|
session(s),
|
|
- sessionControl(control),
|
|
- configured(false)
|
|
+ sessionControl(control)
|
|
{}
|
|
|
|
SessionTuple&
|