Build fixes.

This commit is contained in:
Adam Ierymenko 2019-09-11 15:52:18 -07:00
parent d8dae365f6
commit 0723a85ab3
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
9 changed files with 13 additions and 13 deletions

View file

@ -16,6 +16,8 @@
#include "Constants.hpp"
#include <vector>
namespace ZeroTier {
/**
@ -68,8 +70,8 @@ public:
{
for(;;) {
if (_b) {
kptr = &(_b->k);
vptr = &(_b->v);
kptr = (K *)(&(_b->k));
vptr = (V *)(&(_b->v));
_b = _b->next;
return true;
}