Alexey Orlov

Results 8 comments of Alexey Orlov

FreeListAllocator::FindBest must be rewritten ``` void FreeListAllocator::FindBest(const std::size_t size, const std::size_t alignment, std::size_t& padding, Node *& previousNode, Node *& foundNode) { std::size_t smallestDiff = std::numeric_limits::max(); Node * it = m_freeList.head;...

> Secondly, in the alloc implementation of FreeListAllocator. When adding new block/node due to rest of available memory. Checking "rest > 0" is not enough I believe, because every block...

Catch it ``` #include #include #include #include "freelistallocator.h" class Base { public: Base() { std::cout

I got the same error during papyrus project building: "fatal error C1083: Cannot open include file: 'charry.h': No such file or directory". I wrote an email to you with details...

Thank you for your support. So, I don't know why, but PPDSC.exe can't compile charry.ds (File charry.ds, Line 13: error 11844). I tried to rebuild the utility for x86 in...

I use Windows 7 x64. Maybe it's important...

I sent it over email.

I checked your fix. It works, thanks. Also I tried to setting my git client using a command `git config --global core.autocrlf true` and it works too. All files have...