summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-07-18 14:13:53 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-07-18 14:13:53 +0000
commit570ab08f83b98783b9a18338df29f78ecaeb729a (patch)
tree859a2a5c8fbda6aba6e7a527bb1ed9dea8c15159 /searchcore
parent1d980cc63e8dc30dbd4ce4b4faaf04e420a90882 (diff)
Drop non ancient non const GetSize/GetPosition
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/apps/vespa-gen-testdocs/vespa-gen-testdocs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/apps/vespa-gen-testdocs/vespa-gen-testdocs.cpp b/searchcore/src/apps/vespa-gen-testdocs/vespa-gen-testdocs.cpp
index 3a7e2a706cb..2290b1e131c 100644
--- a/searchcore/src/apps/vespa-gen-testdocs/vespa-gen-testdocs.cpp
+++ b/searchcore/src/apps/vespa-gen-testdocs/vespa-gen-testdocs.cpp
@@ -85,7 +85,7 @@ shafile(const string &baseDir, const string &file)
LOG(error, "Could not open %s for sha256 checksum", fullFile.c_str());
LOG_ABORT("should not be reached");
}
- int64_t flen = f.GetSize();
+ int64_t flen = f.getSize();
int64_t remainder = flen;
EvpMdCtxPtr md_ctx(EVP_MD_CTX_new());
const EVP_MD* md = EVP_get_digestbyname("SHA256");