소스 검색

Updated: clang-tidy

Steve Thielemann 3 년 전
부모
커밋
8302a4e6bc
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      door.cpp

+ 2 - 3
door.cpp

@@ -382,9 +382,8 @@ void Door::detect_unicode_and_screen(void) {
       // 1;3R also happens under VSCodium.
       // 1;4R is what I get from syncterm.
 
-      if (( (strstr(buffer, "1;1R") != nullptr) or 
-		      (strstr(buffer, "1;3R") != nullptr) )
-	      and
+      if (((strstr(buffer, "1;1R") != nullptr) or
+           (strstr(buffer, "1;3R") != nullptr)) and
           ((strstr(buffer, "2;2R") != nullptr) or
            (strstr(buffer, "2;3R") != nullptr))) {