aka-demik / superobject

Automatically exported from https://code.google.com/p/superobject/
0 stars 1 forks source link

FormatSettings had changed in Delphi XE #31

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Include Delphi XE in compiler directive

{$if defined(VER230)}
  {$define NEED_FORMATSETTINGS}
{$ifend}

replaced with

{$if defined(VER220) or defined(VER230)}
  {$define NEED_FORMATSETTINGS}
{$ifend}

Original issue reported on code.google.com by fabricio...@gmail.com on 26 May 2012 at 5:53