From 3d6e9da1158f8106952d12b27daf4409eeeb77b8 Mon Sep 17 00:00:00 2001 From: "Daniel J. Hofmann" Date: Thu, 18 Feb 2016 15:54:30 -0800 Subject: [PATCH] Fix missing headers in hint.hpp --- include/engine/hint.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/engine/hint.hpp b/include/engine/hint.hpp index cd88c4a75..8bd722b30 100644 --- a/include/engine/hint.hpp +++ b/include/engine/hint.hpp @@ -5,8 +5,12 @@ #include "engine/phantom_node.hpp" #include + +#include #include +#include + namespace osrm { namespace engine @@ -28,11 +32,7 @@ struct Hint facade.GetCheckSum() == data_checksum; } - std::string ToBase64() const - { - std::string encoded = encodeBase64(*this); - return encoded; - } + std::string ToBase64() const { return encodeBase64(*this); } static Hint FromBase64(const std::string &base64Hint) {