drycpp / lmdbxx

C++11 wrapper for the LMDB embedded B+ tree database library.
http://lmdbxx.sourceforge.net
The Unlicense
272 stars 89 forks source link

MSVC support #3

Closed gregoire-astruc closed 8 years ago

gregoire-astruc commented 9 years ago

Hello,

while trying to compile on windows I ran into a few minor issues.

Mainly because Microsoft has not updated __cplusplus for years.

For some odd reason it does not think lmdb::val is a POD. Given the info on PODTypes on CppReference I'd guess it's still doing pre-11 checks or the default-declared dtor confuses him.

My testings were done with VS2015, which afaik is fully compliant with c++11.

artob commented 8 years ago

Thanks for this, now merged!