Skip to content

Commit 08439bf

Browse files
committed
missing template
1 parent 062d117 commit 08439bf

File tree

1 file changed

+2
-2
lines changed
  • serialization/protobuf/protobuf/include/ecal/msg/protobuf

1 file changed

+2
-2
lines changed

serialization/protobuf/protobuf/include/ecal/msg/protobuf/client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ namespace eCAL
186186
auto instances = GetClientInstances();
187187
for (auto& instance : instances)
188188
{
189-
bool success = instance.CallWithCallback<ResponseT>(method_name_, request_, response_callback_, timeout_);
189+
bool success = instance.template CallWithCallback<ResponseT>(method_name_, request_, response_callback_, timeout_);
190190
if (!success) overall_success = false;
191191
}
192192
return overall_success;
@@ -235,7 +235,7 @@ namespace eCAL
235235
auto instances = GetClientInstances();
236236
for (auto& instance : instances)
237237
{
238-
bool success = instance.CallWithCallbackAsync<ResponseT>(method_name_, request_, response_callback_);
238+
bool success = instance.template CallWithCallbackAsync<ResponseT>(method_name_, request_, response_callback_);
239239
if (!success) overall_success = false;
240240
}
241241
return overall_success;

0 commit comments

Comments
 (0)