Void cast to silence -Wunused-parameter error
We are bringing Emboss into https://pigweed.dev/
diff --git a/runtime/cpp/emboss_array_view.h b/runtime/cpp/emboss_array_view.h
index a1544c6..79c6268 100644
--- a/runtime/cpp/emboss_array_view.h
+++ b/runtime/cpp/emboss_array_view.h
@@ -338,6 +338,10 @@
kAddressableUnitSize> *array,
Stream *stream, const TextOutputOptions &options) {
// Intentionally empty. Overload for specific element types.
+ // Avoid unused parameters error:
+ static_cast<void>(array);
+ static_cast<void>(stream);
+ static_cast<void>(options);
}
// Prints out the elements of an 8-bit Int or UInt array as characters.