0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

Merge branch 'master' of github.com:mongodb/mongo

This commit is contained in:
dwight 2010-12-13 22:13:15 -05:00
commit 0a854688df

View File

@ -116,7 +116,7 @@ namespace mongo {
path Journal::getFilePathFor(int filenumber) const {
filesystem::path p(dir);
p /= (str::stream() << "j._" << filenumber);
p /= string(str::stream() << "j._" << filenumber);
return p;
}