@swesterfeld commented on this pull request.
> +fast_copy (uint n_values,
+ Data *ovalues,
+ const Data *ivalues)
+{
+ copy (ivalues, ivalues + n_values, ovalues);
+}
+
+template<> void
+fast_copy (uint n_values,
+ float *ovalues,
+ const float *ivalues)
+{
+ Block::copy (n_values, ovalues, ivalues);
+}
+
+#if 0 // <- avoid unused warning
Done.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.