summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_unwind.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-07-13 23:08:35 -0400
committerEliot Horowitz <eliot@10gen.com>2012-07-13 23:08:35 -0400
commit7b911f25727e87105bc756ce8eb1b2a994813d75 (patch)
tree8d011f5094231185b99ea343b206aaeca25bf3ed /src/mongo/db/pipeline/document_source_unwind.cpp
parent0da867190d44c77ddf5ffd468c0c0028cd9e653f (diff)
downloadmongo-7b911f25727e87105bc756ce8eb1b2a994813d75.tar.gz
try to fix windows compile
Diffstat (limited to 'src/mongo/db/pipeline/document_source_unwind.cpp')
-rwxr-xr-xsrc/mongo/db/pipeline/document_source_unwind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/document_source_unwind.cpp b/src/mongo/db/pipeline/document_source_unwind.cpp
index f32ccc69a77..d1488887cbd 100755
--- a/src/mongo/db/pipeline/document_source_unwind.cpp
+++ b/src/mongo/db/pipeline/document_source_unwind.cpp
@@ -94,7 +94,7 @@ namespace mongo {
}
// The target field must be an array to unwind.
- uassert(15978, str::stream() << DocumentSourceUnwind::unwindName
+ uassert(15978, str::stream() << (string)DocumentSourceUnwind::unwindName
<< ": value at end of field path must be an array",
pathValue->getType() == Array);