@@ -805,14 +805,14 @@ test_update_one (bool ordered)
805
805
806
806
807
807
static void
808
- test_update_one_ordered ()
808
+ test_update_one_ordered (void )
809
809
{
810
810
test_update_one (true);
811
811
}
812
812
813
813
814
814
static void
815
- test_update_one_unordered ()
815
+ test_update_one_unordered (void )
816
816
{
817
817
test_update_one (false);
818
818
}
@@ -877,7 +877,7 @@ test_replace_one (bool ordered)
877
877
878
878
879
879
static void
880
- test_upsert_large ()
880
+ test_upsert_large (void )
881
881
{
882
882
mongoc_bulk_operation_t * bulk ;
883
883
mongoc_collection_t * collection ;
@@ -952,14 +952,14 @@ test_upsert_large ()
952
952
953
953
954
954
static void
955
- test_replace_one_ordered ()
955
+ test_replace_one_ordered (void )
956
956
{
957
957
test_replace_one (true);
958
958
}
959
959
960
960
961
961
static void
962
- test_replace_one_unordered ()
962
+ test_replace_one_unordered (void )
963
963
{
964
964
test_replace_one (false);
965
965
}
@@ -1105,7 +1105,7 @@ test_index_offset (void)
1105
1105
1106
1106
1107
1107
static void
1108
- test_single_ordered_bulk ()
1108
+ test_single_ordered_bulk (void )
1109
1109
{
1110
1110
mongoc_client_t * client ;
1111
1111
bool has_write_cmds ;
@@ -1157,7 +1157,7 @@ test_single_ordered_bulk ()
1157
1157
1158
1158
1159
1159
static void
1160
- test_insert_continue_on_error ()
1160
+ test_insert_continue_on_error (void )
1161
1161
{
1162
1162
mongoc_client_t * client ;
1163
1163
bool has_write_cmds ;
@@ -1204,7 +1204,7 @@ test_insert_continue_on_error ()
1204
1204
1205
1205
1206
1206
static void
1207
- test_update_continue_on_error ()
1207
+ test_update_continue_on_error (void )
1208
1208
{
1209
1209
mongoc_client_t * client ;
1210
1210
bool has_write_cmds ;
@@ -1267,7 +1267,7 @@ test_update_continue_on_error ()
1267
1267
1268
1268
1269
1269
static void
1270
- test_remove_continue_on_error ()
1270
+ test_remove_continue_on_error (void )
1271
1271
{
1272
1272
mongoc_client_t * client ;
1273
1273
bool has_write_cmds ;
@@ -1320,7 +1320,7 @@ test_remove_continue_on_error ()
1320
1320
1321
1321
1322
1322
static void
1323
- test_single_error_ordered_bulk ()
1323
+ test_single_error_ordered_bulk (void )
1324
1324
{
1325
1325
mongoc_client_t * client ;
1326
1326
bool has_write_cmds ;
@@ -1378,7 +1378,7 @@ test_single_error_ordered_bulk ()
1378
1378
1379
1379
1380
1380
static void
1381
- test_multiple_error_ordered_bulk ()
1381
+ test_multiple_error_ordered_bulk (void )
1382
1382
{
1383
1383
mongoc_client_t * client ;
1384
1384
bool has_write_cmds ;
@@ -1445,7 +1445,7 @@ test_multiple_error_ordered_bulk ()
1445
1445
1446
1446
1447
1447
static void
1448
- test_single_unordered_bulk ()
1448
+ test_single_unordered_bulk (void )
1449
1449
{
1450
1450
mongoc_client_t * client ;
1451
1451
bool has_write_cmds ;
@@ -1495,7 +1495,7 @@ test_single_unordered_bulk ()
1495
1495
1496
1496
1497
1497
static void
1498
- test_single_error_unordered_bulk ()
1498
+ test_single_error_unordered_bulk (void )
1499
1499
{
1500
1500
mongoc_client_t * client ;
1501
1501
bool has_write_cmds ;
@@ -1768,7 +1768,7 @@ test_write_concern_write_command_unordered_multi_err (void)
1768
1768
1769
1769
1770
1770
static void
1771
- test_multiple_error_unordered_bulk ()
1771
+ test_multiple_error_unordered_bulk (void )
1772
1772
{
1773
1773
mongoc_client_t * client ;
1774
1774
bool has_write_cmds ;
@@ -2087,7 +2087,7 @@ test_large_inserts_ordered (void)
2087
2087
2088
2088
2089
2089
static void
2090
- test_large_inserts_unordered ()
2090
+ test_large_inserts_unordered (void )
2091
2091
{
2092
2092
mongoc_client_t * client ;
2093
2093
bson_t * huge_doc ;
@@ -2427,14 +2427,14 @@ test_bulk_edge_case_372 (bool ordered)
2427
2427
2428
2428
2429
2429
static void
2430
- test_bulk_edge_case_372_ordered ()
2430
+ test_bulk_edge_case_372_ordered (void )
2431
2431
{
2432
2432
test_bulk_edge_case_372 (true);
2433
2433
}
2434
2434
2435
2435
2436
2436
static void
2437
- test_bulk_edge_case_372_unordered ()
2437
+ test_bulk_edge_case_372_unordered (void )
2438
2438
{
2439
2439
test_bulk_edge_case_372 (false);
2440
2440
}
@@ -2583,21 +2583,21 @@ _test_legacy_write_err (op_type_t op_type)
2583
2583
2584
2584
2585
2585
static void
2586
- test_legacy_insert_err ()
2586
+ test_legacy_insert_err (void )
2587
2587
{
2588
2588
_test_legacy_write_err (INSERT );
2589
2589
}
2590
2590
2591
2591
2592
2592
static void
2593
- test_legacy_update_err ()
2593
+ test_legacy_update_err (void )
2594
2594
{
2595
2595
_test_legacy_write_err (UPDATE );
2596
2596
}
2597
2597
2598
2598
2599
2599
static void
2600
- test_legacy_remove_err ()
2600
+ test_legacy_remove_err (void )
2601
2601
{
2602
2602
_test_legacy_write_err (REMOVE );
2603
2603
}
0 commit comments