Skip to content

Commit

Permalink
adding the missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Apr 19, 2018
1 parent b4b55ef commit 8caa916
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/osm_elements/osm_tag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@


#include "osm_elements/osm_tag.h"
#include <iostream>
#include <string>
#include <algorithm>

Expand All @@ -42,7 +43,7 @@ Tag::Tag(const char **atts) {
}

std::ostream& operator<<(std::ostream &os, const Tag& tag) {
os << tag.key() << std::string("=>") << tag.value();
os << tag.key() << "=>" << tag.value();
return os;
}

Expand Down

0 comments on commit 8caa916

Please sign in to comment.