#1 2012-08-22 07:40:16

Bascy
Member
From: The Netherlands
Registered: 2012-06-22
Posts: 108

Cannot compile 2012-08-21 version

Getting an error compiling SynDB, because the protected keyword cannot be used in a record structure.

so, this

  TQueryValue = {$ifndef UNICODE}object{$else}record{$endif}
  protected
    /// fName should be the first property, i.e. the searched hashed value
    fName: string;
    fValue: Variant;
   ....

should be something like this

  TQueryValue = {$ifndef UNICODE}object{$else}record{$endif}
  {$ifndef UNICODE}protected{$endif}
    /// fName should be the first property, i.e. the searched hashed value
    fName: string;
    fValue: Variant;
    ....

Offline

#2 2012-08-22 13:11:44

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,660
Website

Re: Cannot compile 2012-08-21 version

You are right.

Should be fixed by http://synopse.info/fossil/info/d5c218f019

Offline

Board footer

Powered by FluxBB