Browse Source

Replace incorrect [[fallthrough]] with break
7783a07e40a1942583eb0470e1a4b58b3369951e

vadim-xd 10 months ago
parent
commit
3169bfb282
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/cpp/http/io/stream.cpp

+ 1 - 1
library/cpp/http/io/stream.cpp

@@ -320,7 +320,7 @@ private:
                         p.KeepAlive = false;
                     }
                 }
-                [[fallthrough]];
+                break;
                 HEADERCMP(header, "expect") {
                     auto findContinue = [&](const TStringBuf& s) {
                         if (strnicmp(s.data(), "100-continue", 13) == 0) {