diff options
author | Benety Goh <benety@mongodb.com> | 2018-04-26 11:05:53 -0400 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2018-04-26 11:05:53 -0400 |
commit | 810b253e98ca094743288f8174da876af47fa8f8 (patch) | |
tree | 139a78c6d9b50680aa3d64ad5f32edbe7273ce5d /src/mongo/db/update/rename_node.cpp | |
parent | 316bcc98e2b89e266493612ee1cf4680a0265e0f (diff) | |
download | mongo-810b253e98ca094743288f8174da876af47fa8f8.tar.gz |
SERVER-34364 replace references to invariantOK with invariant
Diffstat (limited to 'src/mongo/db/update/rename_node.cpp')
-rw-r--r-- | src/mongo/db/update/rename_node.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/update/rename_node.cpp b/src/mongo/db/update/rename_node.cpp index 3a725218763..acdca72495d 100644 --- a/src/mongo/db/update/rename_node.cpp +++ b/src/mongo/db/update/rename_node.cpp @@ -71,12 +71,12 @@ public: protected: ModifierNode::ModifyResult updateExistingElement( mutablebson::Element* element, std::shared_ptr<FieldRef> elementPath) const final { - invariantOK(element->setValueElement(_elemToSet)); + invariant(element->setValueElement(_elemToSet)); return ModifyResult::kNormalUpdate; } void setValueForNewElement(mutablebson::Element* element) const final { - invariantOK(element->setValueElement(_elemToSet)); + invariant(element->setValueElement(_elemToSet)); } bool allowCreation() const final { |