greensky00 / skiplist

Generic lock-free Skiplist container pure C implementation, STL-style set, map
MIT License
142 stars 20 forks source link

Compile Error in MSVS #2

Open yanmingsohu opened 5 years ago

yanmingsohu commented 5 years ago

skiplist\src\skiplist.cc(42): error C2010: “.”

Visual Studio 2017 c++14

42 #define __SLD_P(args...)

greensky00 commented 5 years ago

Hi @yanmingsohu , this project has been tested on Ubuntu and Mac only. Will support MSVC in the future. Thanks.

flexorx commented 5 years ago

Just correct to:

#define __SLD_P(args, ...)

In addition to including <atomic> and defining ATOMIC macro.