Skip to content

Commit 05c7ace

Browse files
bbarenblatachernya
authored andcommitted
Fix up clang-formatting a bit
Move some characters around to optimize clang-format output.
1 parent 3acaa1c commit 05c7ace

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/frontend/stmclient.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ class STMClient
9898
: ip( s_ip ? s_ip : "" ), port( s_port ? s_port : "" ), key( s_key ? s_key : "" ), escape_key( 0x1E ),
9999
escape_pass_key( '^' ), escape_pass_key2( '^' ), escape_requires_lf( false ), escape_key_help( L"?" ),
100100
saved_termios(), raw_termios(), window_size(), local_framebuffer( 1, 1 ), new_state( 1, 1 ), overlays(),
101-
network(), display( true ), /* use TERM environment var to initialize display */
102-
connecting_notification(), repaint_requested( false ), lf_entered( false ), quit_sequence_started( false ),
103-
clean_shutdown( false ), verbose( s_verbose )
101+
network(), display( true ) /* use TERM environment var to initialize display */, connecting_notification(),
102+
repaint_requested( false ), lf_entered( false ), quit_sequence_started( false ), clean_shutdown( false ),
103+
verbose( s_verbose )
104104
{
105105
if ( predict_mode ) {
106106
if ( !strcmp( predict_mode, "always" ) ) {

src/util/select.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@ class Select
6060

6161
private:
6262
Select()
63-
: max_fd( -1 )
64-
/* These initializations are not used; they are just
65-
here to appease -Weffc++. */
66-
,
63+
: max_fd( -1 ),
64+
/* These initializations are not used; they are just here to appease -Weffc++. */
6765
all_fds( dummy_fd_set ), read_fds( dummy_fd_set ), empty_sigset( dummy_sigset ), consecutive_polls( 0 )
6866
{
6967
FD_ZERO( &all_fds );

0 commit comments

Comments
 (0)