summaryrefslogtreecommitdiffstats
path: root/library/cpp/neh
diff options
context:
space:
mode:
authormikhnenko <[email protected]>2024-10-04 09:58:47 +0300
committermikhnenko <[email protected]>2024-10-04 10:14:38 +0300
commit9ad2894d3a432775a19303a5e8b7a79092017963 (patch)
tree5e53ebb5a41c45938a332cb8f13ed320047411b5 /library/cpp/neh
parent8b94a751187ed4a463b7f37023098505492d4574 (diff)
Remove Size, Empty and Data usages from library
commit_hash:ef5ad4cfa9e68bbfc586492e8c376c732d0a48af
Diffstat (limited to 'library/cpp/neh')
-rw-r--r--library/cpp/neh/http_headers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/neh/http_headers.h b/library/cpp/neh/http_headers.h
index 70cf3a9fbe7..e3c9867d064 100644
--- a/library/cpp/neh/http_headers.h
+++ b/library/cpp/neh/http_headers.h
@@ -24,7 +24,7 @@ namespace NNeh {
bool Next(TStringBuf& header) {
while (Headers_.ReadLine(header)) {
- if (!header.Empty()) {
+ if (!header.empty()) {
return true;
}
}