Backport Win32 LevelDB env from C++0x to C++

Since the gitian mingw compiler doesn't support C++0x yet.
This commit is contained in:
Pieter Wuille
2012-09-04 23:01:03 +02:00
parent 9d503a7285
commit 9f56678fce
4 changed files with 5 additions and 5 deletions

View File

@@ -104,7 +104,7 @@ class AtomicPointer {
private:
void * rep_;
public:
AtomicPointer() : rep_(nullptr) { }
AtomicPointer() : rep_(NULL) { }
explicit AtomicPointer(void* v);
void* Acquire_Load() const;