Build fixes.
This commit is contained in:
parent
d8dae365f6
commit
0723a85ab3
9 changed files with 13 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue