We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6609247 commit 46d2507Copy full SHA for 46d2507
src/solvers/refinement/string_refinement_util.h
@@ -164,6 +164,18 @@ class string_dependenciest
164
: index(i), data(std::move(d))
165
{
166
}
167
+
168
+ builtin_function_nodet(builtin_function_nodet &&other)
169
+ : index(other.index), data(std::move(other.data))
170
+ {
171
+ }
172
173
+ builtin_function_nodet &operator=(builtin_function_nodet &&other)
174
175
+ index = other.index;
176
+ data = std::move(other.data);
177
+ return *this;
178
179
};
180
181
/// A string node points to builtin_function on which it depends
0 commit comments