Artur K.
Artur K.
Sorry, this is standard C++, but MSVC does not handle it properly. You'll have to disable the language extensions to get it to work ( Yes enabling extensions removes support...
I'm developing all my code under Linux with clang/gcc and currently have no access to a VisualStudio development environment. I'll be happy to accept a PR :smile:
Will need to determine why this is entered when _exp is not set
DCC is a decompiler for DOS 16bit executables ( both exe and com ) As for summary of changes, it would be pretty hard to do, most of those were...
using the following code ``` c int a,b,c; int main() { while(c) { if(a) { b = 3; } } return b; } ``` compiling it to an exe [...
> So, how to resolve this situation - to maintain a branch with minimal changes to the original dcc code, essentially, only the changes required to build it with a...
original sources are available at 2a59d07ef2d43b6af4d679f4c549c3173bf1203d
This part is pretty much WIP :smile: I think I have a fixed version laying around
Likely related to #15
It's sometimes used to invalidate pointers: ```cpp ~Foo() { member_pointer=nullptr; } ``` ?