diff options
author | dwight <dwight@10gen.com> | 2010-12-05 20:56:51 -0500 |
---|---|---|
committer | dwight <dwight@10gen.com> | 2010-12-05 20:56:51 -0500 |
commit | 4a5a00525b669e895993e74155deb85312bedce0 (patch) | |
tree | 0c3b7db56d435538506c79acf6e0204e05368de8 /s | |
parent | ece71ea21fdf9d87cdd4bbf0f6fcfbdba1277e5e (diff) | |
download | mongo-4a5a00525b669e895993e74155deb85312bedce0.tar.gz |
refactor OID class a bit, cleanup, better id generation SERVER-2175
Diffstat (limited to 's')
-rw-r--r-- | s/dbgrid.vcxproj | 1 | ||||
-rwxr-xr-x | s/dbgrid.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/s/dbgrid.vcxproj b/s/dbgrid.vcxproj index 5a0fbcc4cad..2466d8932b1 100644 --- a/s/dbgrid.vcxproj +++ b/s/dbgrid.vcxproj @@ -187,6 +187,7 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
+ <ClCompile Include="..\bson\oid.cpp" />
<ClCompile Include="..\client\dbclientcursor.cpp" />
<ClCompile Include="..\client\distlock.cpp" />
<ClCompile Include="..\db\dbwebserver.cpp" />
diff --git a/s/dbgrid.vcxproj.filters b/s/dbgrid.vcxproj.filters index 31c0bb90dc0..c361f8473f3 100755 --- a/s/dbgrid.vcxproj.filters +++ b/s/dbgrid.vcxproj.filters @@ -311,6 +311,9 @@ <ClCompile Include="..\util\alignedbuilder.cpp">
<Filter>Shared Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\bson\oid.cpp">
+ <Filter>Shared Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="gridconfig.h">
|