pleriche / FastMM5

FastMM is a fast replacement memory manager for Embarcadero Delphi applications that scales well across multiple threads and CPU cores, is not prone to memory fragmentation, and supports shared memory without the use of external .DLL files.
283 stars 73 forks source link

NoDebugInfo backwards compatibility option inverted? #34

Closed AtlasHackert closed 1 year ago

AtlasHackert commented 1 year ago

FastMM5.pas, line 176: {$ifdef NoDebugInfo} {$undef FastMM_NoDebugInfo} {$endif}

That "$undef" seems inverted? Shouldn't that be a "$define"?

pleriche commented 1 year ago

You're right, thanks. It's fixed.

AtlasHackert commented 1 year ago

Awesome, thanks! :)