search for: elfstat

Displaying 2 results from an estimated 2 matches for "elfstat".

Did you mean: elstat
2013 Jul 01
4
[LLVMdev] [bikeshed] Anyone have strong feelings about always putting `template <...>` on its own line?
...t `template <...>` on its own line. I think it's a general code-layout consistency win and avoids some cases where trivial code changes result in significant formatting differences (see the last example). Examples of the current behavior: -------------- template <class ELFT> class ELFState { clang-format's to: template <class ELFT> class ELFState { -------------- -------------- template <class T> static size_t vectorDataSize(const std::vector<T> &Vec) { clang-format's to: template <class T> static size_t vectorDataSize(const std::vector<T&...
2013 Jul 01
0
[LLVMdev] [bikeshed] Anyone have strong feelings about always putting `template <...>` on its own line?
...ne. I think it's a general > code-layout consistency win and avoids some cases where trivial code changes > result in significant formatting differences (see the last example). > > Examples of the current behavior: > > -------------- > template <class ELFT> > class ELFState { > > clang-format's to: > > template <class ELFT> class ELFState { > -------------- > > -------------- > template <class T> > static size_t vectorDataSize(const std::vector<T> &Vec) { > > clang-format's to: > > template <clas...