[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[cdt-dev] C++11 Alias templates
|
- From: Lukas Felber <lfelber@xxxxxx>
- Date: Wed, 18 Apr 2012 10:14:24 +0200
- Delivered-to: cdt-dev@eclipse.org
Hi
I just realized that the C++11 feature "Alias templates" is not (jet)
supported by CDT. Example:
using counter=std::vector<size_t>;
instead of
typedef std::vector<size_t> counter;
Are there any plans when such a feature will be added? I found that
there is already a ticket for this issue
( https://bugs.eclipse.org/bugs/show_bug.cgi?id=374694 ).
I would like to see it implemented very much!
Thanks for any information you can give me on this!
Lukas