- Posts: 33
- Thank you received: 0
×
Discussions for CodeTyphon Object Pascal Programming Language
Question F*ck CodeTools
- AntonyRF
-
Topic Author
- Offline
- Junior Member
-
Less
More
4 years 6 months ago #11200
by AntonyRF
F*ck CodeTools was created by AntonyRF
Hello!
My code:
And if i down ctrl + space in any lines of code then codetools return errorBut i not have compile error and in CT 6.2 not exist this error. Please help me
My code:
...
{$MODE DELPHI}
type
TLogQueue = TQueue<TLogData>;
...
And if i down ctrl + space in any lines of code then codetools return error
Error: expected identifier, but found =
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
4 years 6 months ago #11201
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic F*ck CodeTools
Sir
FreePascal has many many changes on this
please try
FreePascal has many many changes on this
please try
{$mode objfpc}{$H+}
type
TLogQueue = specialize TQueue <TLogData>;
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- AntonyRF
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 33
- Thank you received: 0
4 years 6 months ago #11203
by AntonyRF
Replied by AntonyRF on topic F*ck CodeTools
Sir, i have more 600 000 lines of delphi code =(
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
4 years 6 months ago #11204
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic F*ck CodeTools
My suggestion
split and put the declaration of your
type
TLogQueue = specialize TQueue <TLogData>;
to a new Unit with {$mode objfpc}{$H+} directive
split and put the declaration of your
type
TLogQueue = specialize TQueue <TLogData>;
to a new Unit with {$mode objfpc}{$H+} directive
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- AntonyRF
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 33
- Thank you received: 0
4 years 6 months ago #11206
by AntonyRF
Replied by AntonyRF on topic F*ck CodeTools
Hmmm, you best of the best =)
Please Log in or Create an account to join the conversation.