summaryrefslogtreecommitdiff
path: root/src/mongo/db/update/SConscript
diff options
context:
space:
mode:
authorJustin Seyster <justin.seyster@mongodb.com>2017-07-10 11:27:20 -0400
committerJustin Seyster <justin.seyster@mongodb.com>2017-07-10 14:04:21 -0400
commit88c47189681b3212fe7ad98e4097b7e00b1aa232 (patch)
treea195768fa6cc198a58e8f4c6f2fd48c20b95602e /src/mongo/db/update/SConscript
parent758d9e2c61e605f0a5bb9cc098a9771a74aa9fda (diff)
downloadmongo-88c47189681b3212fe7ad98e4097b7e00b1aa232.tar.gz
SERVER-28765 Create BitNode.
Additionally, this change fixes a couple of minor things. First, it makes the single-argument constructor for ArithmeticNode explicit. Second, it adds a (noop = false) assignment in the else branch of a test in set_node.cpp, instead of relying on the fact that callers set noop to false. That gives SetNode clearer behavior.
Diffstat (limited to 'src/mongo/db/update/SConscript')
-rw-r--r--src/mongo/db/update/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/update/SConscript b/src/mongo/db/update/SConscript
index 4468b4c681d..c1496809662 100644
--- a/src/mongo/db/update/SConscript
+++ b/src/mongo/db/update/SConscript
@@ -58,6 +58,7 @@ env.Library(
source=[
'addtoset_node.cpp',
'arithmetic_node.cpp',
+ 'bit_node.cpp',
'modifier_table.cpp',
'path_creating_node.cpp',
'pop_node.cpp',
@@ -82,6 +83,7 @@ env.CppUnitTest(
source=[
'addtoset_node_test.cpp',
'arithmetic_node_test.cpp',
+ 'bit_node_test.cpp',
'pop_node_test.cpp',
'rename_node_test.cpp',
'set_node_test.cpp',