diff options
author | Eliot Horowitz <eliot@10gen.com> | 2013-11-02 13:31:16 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2013-11-02 13:31:16 -0400 |
commit | ac7b0f59ee5ee58a27d1927047426a2d0d354e4e (patch) | |
tree | b35e99a962e28352073499e71357e08b3a662d39 /src/mongo/db/index_legacy.h | |
parent | f4752b153a3294bd6dfbfb3b626526c7baf7f90e (diff) | |
download | mongo-ac7b0f59ee5ee58a27d1927047426a2d0d354e4e.tar.gz |
SERVER-11178: index building now all with IndexCatalog, CatalogHack out of all new paths
Diffstat (limited to 'src/mongo/db/index_legacy.h')
-rw-r--r-- | src/mongo/db/index_legacy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index_legacy.h b/src/mongo/db/index_legacy.h index 14de074c7d4..f9f96e1f4d2 100644 --- a/src/mongo/db/index_legacy.h +++ b/src/mongo/db/index_legacy.h @@ -73,7 +73,7 @@ namespace mongo { * This is a no-op unless the index is a FTS index. In that case, we set the flag for using * power of 2 sizes for space allocation. */ - static void postBuildHook(Collection* collection, IndexDescriptor* descriptor); + static void postBuildHook(Collection* collection, const BSONObj& keyPattern ); }; } // namespace mongo |