From 92e0fb4c09a55676338c163c959f3284ae429fac Mon Sep 17 00:00:00 2001 From: lia <167905060+lia-viam@users.noreply.github.com> Date: Mon, 19 Aug 2024 13:49:09 -0400 Subject: [PATCH] Fix aarch build (#282) --- src/viam/sdk/common/proto_value.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/viam/sdk/common/proto_value.hpp b/src/viam/sdk/common/proto_value.hpp index 168fced2c..99b0725ba 100644 --- a/src/viam/sdk/common/proto_value.hpp +++ b/src/viam/sdk/common/proto_value.hpp @@ -223,6 +223,10 @@ class ProtoValue { storage self_; }; +// Pre c++17 this is still required +template +constexpr ProtoValue::vtable ProtoValue::model::vtable_; + /// @brief Alias declaration for map of string to type-erased ProtoValue representing /// google::protobuf::Struct. /// This stores structured data as a map where the keys can be thought of as member names.