llvm / llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.
http://llvm.org
Other
28.49k stars 11.78k forks source link

Incorrect formatting of rvalue references. #15423

Closed Bigcheese closed 11 years ago

Bigcheese commented 11 years ago
Bugzilla Link 15051
Resolution FIXED
Resolved on Mar 12, 2013 11:30
Version trunk
OS All

Extended Description

Input: void adena(T &&t);

Output: void adena(T && t);

Expected: void adena(T &&t);

I think this shows up in other contexts as well.

llvmbot commented 11 years ago

Fixed for all cases except template arguments in r176874. http://llvm-reviews.chandlerc.com/D531