About Store Forum Documentation Contact



Post Reply 
Code Editor Exponent Bug
Author Message
Rubeus Offline
Member

Post: #1
Code Editor Exponent Bug
When in code, type:
3.e - 4
The code editor outputs to C++ code:
3.ef - 4
Which causes a compile error.

smile
06-07-2014 05:35 PM
Find all posts by this user Quote this message in a reply
Rubeus Offline
Member

Post: #2
RE: Code Editor Exponent Bug
Hmm, 2 in the same day! I'll just add it here:
<class or struct> <name>
{
}<declaration>;

The declaration gets kicked off the end of the class definition and gets set as just "<declaration>;", which causes a "missing type specifier" error.
06-07-2014 08:38 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #3
RE: Code Editor Exponent Bug
(06-07-2014 05:35 PM)Rubeus Wrote:  When in code, type:
3.e - 4
The code editor outputs to C++ code:
3.ef - 4
Which causes a compile error.

smile
Thank you! I'll check this

(06-07-2014 08:38 PM)Rubeus Wrote:  Hmm, 2 in the same day! I'll just add it here:
<class or struct> <name>
{
}<declaration>;

The declaration gets kicked off the end of the class definition and gets set as just "<declaration>;", which causes a "missing type specifier" error.
This is on purpose, you should list the variable separately.
06-07-2014 10:35 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #4
RE: Code Editor Exponent Bug
Thank you, I've just fixed it in the source branch.
06-08-2014 12:03 AM
Find all posts by this user Quote this message in a reply
Rubeus Offline
Member

Post: #5
RE: Code Editor Exponent Bug
Great work. smile
06-08-2014 05:35 PM
Find all posts by this user Quote this message in a reply
Post Reply