Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7e7b2f

Browse files
committed
clang-tidy modernize-use-using fix
1 parent fdcc13a commit a7e7b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cli/cli.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ namespace cli
9595
// this is the type of std::cout
9696
typedef std::basic_ostream<char, std::char_traits<char> > CoutType;
9797
// this is the function signature of std::endl
98-
typedef CoutType& (*StandardEndLine)(CoutType&);
98+
using StandardEndLine = CoutType &(*)(CoutType &);
9999

100100
// takes << std::endl
101101
OutStream& operator << (StandardEndLine manip)

0 commit comments

Comments
 (0)