c++ STL types (#369)
sometimes I am unable to set proper type (or I am using your utility wrong)
I am able to make field
- myField : std::string const &
But I am unable to make parameters with such type
+ MyOp(a:std::string const &, b:std::string const &)
as it will be rewritten to
+ MyOp(s:std, b:std)
I expect the C++ namespace notation to interfere with ":" type separator, as using "MyOp(a:string const &, b:string const &)" seems to be valid
However some more complex name of the type is highly unevitable in more complex projects
Question
-> is it fixed? in which version?
-> is it going to be fixed?
-> is it wrong to use the tool this way? how to use it better?
Created
24 June 2014 12:14:04
Closed
7 July 2014 0:30:12
Requested by
chmirko
State
Solved
Version
6.51
OperatingSystem
Windows 7
Solved in
7.50
Dusan Rodina - softwareideas.net 24 June 2014 13:21:11
Hello,
Please try the latest version 7.46. It works also with types you mentioned.