You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boos...

16 lines
425 B

Fix missing implicit include.
Patch by Jan-Matthias Braun
See also: https://bugs.gentoo.org/show_bug.cgi?id=598340
--- a/src/mongo/client/examples/connect.cpp
+++ b/src/mongo/client/examples/connect.cpp
@@ -29,6 +29,8 @@
#include "mongo/client/dbclient.h"
#include "mongo/stdx/functional.h"
+#include <boost/core/ref.hpp>
+
namespace {
class OstreamAppender : public mongo::logger::MessageLogDomain::EventAppender {