Bug 395569 - [C++14] Add support for c++14 features implemented in GCC 4.8
Summary: [C++14] Add support for c++14 features implemented in GCC 4.8
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-indexer (show other bugs)
Version: Next   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on: 516626 408470
Blocks: 490405
  Show dependency tree
 
Reported: 2012-12-02 17:11 EST by Nathan Ridge CLA
Modified: 2020-09-04 15:27 EDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nathan Ridge CLA 2012-12-02 17:11:31 EST
C++1y refers to the next version of the C++ standard after C++11.

Starting in version 4.8, GCC has begun implementing experimental support for some C++1y features. They are enabled with the -std=c++1y flag.

Here is a list of features added so far (see http://gcc.gnu.org/gcc-4.8/changes.html). More may be added as GCC 4.8 is not yet released.


Return type deduction in normal functions   N3386


Note that C++11 (as opposed to C++1y) features added in GCC 4.8 have their own bug, 395568.
Comment 1 Nathan Ridge CLA 2013-05-20 00:01:01 EDT
C++1y is now referred to as C++14, as it is targeted for 2014.

Also, the latest reference for the feature "return type deduction for normal functions" in N3638.