summaryrefslogtreecommitdiff
path: root/src/mongo/db/geo/shapes.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-01-09 17:35:57 -0500
committerAndrew Morrow <acm@mongodb.com>2015-01-15 07:04:25 -0500
commit44cafa7dddde7510aa0a05efce807a2e294fdc6d (patch)
tree11d6e26cfa491a0f498c3ce650ee402ec4d7084b /src/mongo/db/geo/shapes.h
parent40f28cd947e8a5227c5a4f6961143ad1b041105f (diff)
downloadmongo-44cafa7dddde7510aa0a05efce807a2e294fdc6d.tar.gz
SERVER-13256 Add std namespace qualifications in headers
Diffstat (limited to 'src/mongo/db/geo/shapes.h')
-rw-r--r--src/mongo/db/geo/shapes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/geo/shapes.h b/src/mongo/db/geo/shapes.h
index d67643f7823..297eb8135d3 100644
--- a/src/mongo/db/geo/shapes.h
+++ b/src/mongo/db/geo/shapes.h
@@ -70,7 +70,7 @@ namespace mongo {
bool circleInteriorContainsBox(const Circle& circle, const Box& box);
bool circleIntersectsWithBox(const Circle& circle, const Box& box);
bool circleInteriorIntersectsWithBox(const Circle& circle, const Box& box);
- bool edgesIntersectsWithBox(const vector<Point>& vertices, const Box& box);
+ bool edgesIntersectsWithBox(const std::vector<Point>& vertices, const Box& box);
bool polygonContainsBox(const Polygon& polygon, const Box& box);
bool polygonIntersectsWithBox(const Polygon& polygon, const Box& box);