summaryrefslogtreecommitdiff
path: root/src/mongo/db/persistent_task_store.h
diff options
context:
space:
mode:
authorHugh Tong <hugh.tong@mongodb.com>2022-07-26 19:20:58 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-26 21:00:49 +0000
commit044d2f734e0dba40b9dfb02cc49c2bff8f575cd5 (patch)
treeeb2d17564a0c99d2ee9ea3d2f95c81c46bcfcee1 /src/mongo/db/persistent_task_store.h
parent921bba175902f9b9f29751a466383c3d7e80df7b (diff)
downloadmongo-044d2f734e0dba40b9dfb02cc49c2bff8f575cd5.tar.gz
SERVER-67824 Rename IDLParserErrorContext to IDLParserContext
Diffstat (limited to 'src/mongo/db/persistent_task_store.h')
-rw-r--r--src/mongo/db/persistent_task_store.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/persistent_task_store.h b/src/mongo/db/persistent_task_store.h
index d5ef0e50d49..8b21e9b9c5b 100644
--- a/src/mongo/db/persistent_task_store.h
+++ b/src/mongo/db/persistent_task_store.h
@@ -158,8 +158,8 @@ public:
while (cursor->more()) {
auto bson = cursor->next();
- auto t = T::parse(
- IDLParserErrorContext("PersistentTaskStore:" + _storageNss.toString()), bson);
+ auto t =
+ T::parse(IDLParserContext("PersistentTaskStore:" + _storageNss.toString()), bson);
if (bool shouldContinue = handler(t); !shouldContinue)
return;