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 0c0861a commit 85a293aCopy full SHA for 85a293a
src/solvers/refinement/string_refinement_util.h
@@ -164,6 +164,17 @@ 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
178
};
179
180
/// A string node points to builtin_function on which it depends
0 commit comments