@@ -124,7 +124,7 @@ TEST_F(TestListInsert, test_bounded_list_insert_1) {
124124 num_inserted = 0 ;
125125 num_work = 0 ;
126126
127- auto const num_nodes = theContext ()->getNumNodes ();
127+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
128128
129129 auto const range = Index1D (num_nodes * num_elms_per_node);
130130 std::vector<Index1D> list_insert;
@@ -151,7 +151,7 @@ TEST_F(TestListInsert, test_bounded_list_insert_no_default_constructor) {
151151 num_inserted = 0 ;
152152 num_work = 0 ;
153153
154- auto const num_nodes = theContext ()->getNumNodes ();
154+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
155155
156156 auto const range = Index1D (num_nodes * num_elms_per_node);
157157 std::vector<Index1D> list_insert;
@@ -192,7 +192,7 @@ TEST_F(TestListInsert, test_unbounded_list_insert_2) {
192192 num_inserted = 0 ;
193193 num_work = 0 ;
194194
195- auto const num_nodes = theContext ()->getNumNodes ();
195+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
196196
197197 auto const range = Index1D (num_nodes * num_elms_per_node);
198198 std::vector<Index1D> list_insert;
@@ -219,7 +219,7 @@ TEST_F(TestListInsert, test_unbounded_list_insert_no_default_constructor) {
219219 num_inserted = 0 ;
220220 num_work = 0 ;
221221
222- auto const num_nodes = theContext ()->getNumNodes ();
222+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
223223
224224 auto const range = Index1D (num_nodes * num_elms_per_node);
225225 std::vector<Index1D> list_insert;
@@ -247,7 +247,7 @@ TEST_F(TestListInsert, test_bounded_list_insert_here_3) {
247247 num_inserted = 0 ;
248248 num_work = 0 ;
249249
250- auto const num_nodes = theContext ()->getNumNodes ();
250+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
251251 auto const this_node = theContext ()->getNode ();
252252 auto const range = Index1D (num_nodes * num_elms_per_node);
253253
@@ -281,7 +281,7 @@ TEST_F(TestListInsert, test_bounded_list_insert_here_no_default_constructor) {
281281 num_inserted = 0 ;
282282 num_work = 0 ;
283283
284- auto const num_nodes = theContext ()->getNumNodes ();
284+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
285285 auto const this_node = theContext ()->getNode ();
286286 auto const range = Index1D (num_nodes * num_elms_per_node);
287287
@@ -314,7 +314,7 @@ TEST_F(TestListInsert, test_unbounded_list_insert_here_4) {
314314 num_inserted = 0 ;
315315 num_work = 0 ;
316316
317- auto const num_nodes = theContext ()->getNumNodes ();
317+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
318318 auto const this_node = theContext ()->getNode ();
319319 auto const range = Index1D (num_nodes * num_elms_per_node);
320320
@@ -348,7 +348,7 @@ TEST_F(TestListInsert, test_unbounded_list_insert_here_no_default_constructor) {
348348 num_inserted = 0 ;
349349 num_work = 0 ;
350350
351- auto const num_nodes = theContext ()->getNumNodes ();
351+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
352352 auto const this_node = theContext ()->getNode ();
353353 auto const range = Index1D (num_nodes * num_elms_per_node);
354354
@@ -426,7 +426,7 @@ TEST_F(TestListInsert, test_bounded_bulk_insert_no_default_constructor) {
426426 num_inserted = 0 ;
427427 num_work = 0 ;
428428
429- auto const num_nodes = theContext ()->getNumNodes ();
429+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
430430 auto const range = Index1D (num_nodes * num_elms_per_node);
431431
432432 auto proxy = vt::makeCollection<NonDefaultConstructibleStruct>(" test_bounded_bulk_insert_no_default_constructor" )
@@ -450,7 +450,7 @@ TEST_F(TestListInsert, test_bounded_mix_list_insert_no_default_constructor) {
450450 num_inserted = 0 ;
451451 num_work = 0 ;
452452
453- auto const num_nodes = theContext ()->getNumNodes ();
453+ auto const num_nodes = theContext ()->getNumNodes (). get () ;
454454 auto const this_node = theContext ()->getNode ();
455455 auto const range = Index1D (num_nodes * num_elms_per_node);
456456
0 commit comments