Re: [fpc-pascal] procedure modifiers

2014-03-15 Thread Michael Van Canneyt
On Sat, 15 Mar 2014, Xiangrong Fang wrote: Hi All, I wonder where should I put procedure modifiers, in the interface section, or implementation section, or both? e.g. interface function test(data: Integer): Integer; inline; <-- here? Interface is the place where you should put them for s

[fpc-pascal] procedure modifiers

2014-03-15 Thread Xiangrong Fang
Hi All, I wonder where should I put procedure modifiers, in the interface section, or implementation section, or both? e.g. interface function test(data: Integer): Integer; inline; <-- here? implementation function test(data: Integer): Integer; inline; <-- here? begin //.. end; Thanks, Xi