fix indentation of template functions
template functions where treated as unfinished lines by the indenter and so
the result of:
template<typename T>
void myFunc()
{
}
was indented as:
template<typename T>
void myFunc()
{
}
which is pretty ugly and non-standard.
Merge-request: 1615
Reviewed-by:
Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
Showing
- src/shared/indenter/constants.cpp 3 additions, 1 deletionsrc/shared/indenter/constants.cpp
- src/shared/indenter/indenter.h 1 addition, 0 deletionssrc/shared/indenter/indenter.h
- src/shared/indenter/indenter_impl.h 4 additions, 3 deletionssrc/shared/indenter/indenter_impl.h
- src/shared/indenter/test/main.cpp 1 addition, 1 deletionsrc/shared/indenter/test/main.cpp
Loading
Please register or sign in to comment