Skip to content

Commit d2ee251

Browse files
committed
Don't forget std:: namespace for make_pair
1 parent 495e441 commit d2ee251

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/overpass_api/core/basic_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ void copy_elems(const std::vector< Object >& source, std::vector< std::pair< uin
303303
{
304304
uint i = 0;
305305
for (typename std::vector< Object >::const_iterator it = source.begin(); it != source.end(); ++it)
306-
target.push_back(make_pair(i++, *it));
306+
target.push_back(std::make_pair(i++, *it));
307307
}
308308

309309

0 commit comments

Comments
 (0)