manually add protobuf generated files

This commit is contained in:
philippe44
2023-03-27 20:16:38 -07:00
parent fc78b36c1f
commit 31184b6946
14 changed files with 1258 additions and 15 deletions

View File

@@ -34,7 +34,7 @@ class HTTPClient {
#ifndef BELL_DISABLE_FMT
return ValueHeader{"Range", fmt::format("bytes={}-{}", from, to)};
#else
return ValueHeader{"Range", "bytes=" + std::to_string(from) + "-" + std::to_string(to) };
return ValueHeader{"Range", "bytes=" + std::to_string(from) + "-" + std::to_string(to)};
#endif
}