Book a Demo

Author Topic: c++ 11 'using' aliasing instead of 'typedef'  (Read 2272 times)

ddb

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
c++ 11 'using' aliasing instead of 'typedef'
« on: July 26, 2015, 10:53:58 pm »
Hi,

In C++ 11 one can use
[highlight]using MyInt = int;[/highlight]
instead of
typedef int MyInt;

E.g. this form is useful for templates.

Unfortunately EA ignores aliasing with 'using'.

Can I assist somehow to EA to discover this form of type aliasing?
Thank you!