option for space between a template class name and the following angle bracket
Kiwon Um <[email protected]> Fri, 06 Nov 2009 18:49:51 +0900
| Newsgroups | gmane.comp.gnu.indent.bugs |
|---|---|
| Message-ID | <[email protected]> |
Dear GNU Indent Dev. Team: This mail suggests an options for template-related formatting control. GNU Indent does format as follow: shared_ptr < Test > test; const int R = static_cast < int >(pow(2.0f, 6)); It has a lot of options for parenthesis, but not for angle bracket. Therefore, I suggest some options to control space between a template class name and the following angle bracket so that the followings are possible: shared_ptr<Test> test; const int R = static_cast<int>(pow(2.0f, 6)); Thank you. Sincerely, Kiwon Um