Skip to content
Snippets Groups Projects
Commit 1f9aa176 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

vclock: clang 6.0 fix

Fix a compiler warning with clang 6
parent b25e3168
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ vclock_iterator_next(struct vclock_iterator *it)
#define vclock_foreach(it, var) \
for (struct vclock_c (var) = vclock_iterator_next(it); \
for (struct vclock_c var = vclock_iterator_next(it); \
(var).id < VCLOCK_MAX; (var) = vclock_iterator_next(it))
static inline void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment