From 74a7ff6a82d03dcd1b08c202304a9d1ab2997e2c Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Sun, 4 May 2014 23:15:14 +0400 Subject: [PATCH] Fixed possible ADL issue in the Array template --- libuavcan/include/uavcan/marshal/array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libuavcan/include/uavcan/marshal/array.hpp b/libuavcan/include/uavcan/marshal/array.hpp index 2963829339..85b668ae77 100644 --- a/libuavcan/include/uavcan/marshal/array.hpp +++ b/libuavcan/include/uavcan/marshal/array.hpp @@ -148,7 +148,7 @@ private: { if (ArrayMode != ArrayModeDynamic) { - fill(data_, data_ + MaxSize, U()); + ::uavcan::fill(data_, data_ + MaxSize, U()); } } template void initialize(...) { }