File tree 2 files changed +10
-0
lines changed 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ class RFunction_Update;
15
15
class RFunction_Aggregate ;
16
16
17
17
struct GNN_Init {
18
+
19
+ // Explicitly define default constructor so cppyy doesn't attempt
20
+ // aggregate initialization.
21
+ GNN_Init () {}
22
+
18
23
// update blocks
19
24
std::unique_ptr<RFunction_Update> edges_update_block;
20
25
std::unique_ptr<RFunction_Update> nodes_update_block;
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ namespace SOFIE {
14
14
class RFunction_Update ;
15
15
16
16
struct GraphIndependent_Init {
17
+
18
+ // Explicitly define default constructor so cppyy doesn't attempt
19
+ // aggregate initialization.
20
+ GraphIndependent_Init () {}
21
+
17
22
// update blocks
18
23
std::unique_ptr<RFunction_Update> edges_update_block;
19
24
std::unique_ptr<RFunction_Update> nodes_update_block;
You can’t perform that action at this time.
0 commit comments