1
0
forked from aniani/vim

updated for version 7.4.398

Problem:    Gcc error for the argument of InterlockedIncrement() and
            InterlockedDecrement(). (Axel Bender)
Solution:   Remove "unsigned" from the cRefCount_ declaration.
This commit is contained in:
Bram Moolenaar
2014-08-07 13:55:10 +02:00
parent e98cfe1cc9
commit 0106b4b891
2 changed files with 3 additions and 1 deletions

View File

@@ -377,7 +377,7 @@ public:
}
private:
unsigned long cRefCount_;
long cRefCount_;
IDWriteBitmapRenderTarget* pRenderTarget_;
IDWriteRenderingParams* pRenderingParams_;
};