1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 10:00:48 +02:00

Refactored const size arrays to std::array

This commit is contained in:
Simon Rasmussen
2017-03-08 11:00:16 +01:00
parent aa26bb5996
commit e478987dc4
2 changed files with 15 additions and 15 deletions

View File

@@ -136,7 +136,7 @@ public:
}
template <typename T, size_t N>
void parse(T (&array)[N])
void parse(std::array<T, N> &array)
{
for (size_t i = 0; i < N; i++)
{