summaryrefslogtreecommitdiff
path: root/src/storage/http_request_baton.cpp
blob: 7102c20e1f9304bee983b86b3da8670a028cb557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <mbgl/storage/http_request_baton.hpp>
#include <uv.h>

namespace mbgl {

<<<<<<< HEAD
HTTPRequestBaton::HTTPRequestBaton(const std::string &path_) : threadId(uv_thread_self()), path(path_) {
=======
HTTPRequestBaton::HTTPRequestBaton(const std::string &path_) : thread_id(std::this_thread::get_id()), path(path_) {
>>>>>>> 57249ca32c7b0684be36f5195d4967e6517fe75b
}

HTTPRequestBaton::~HTTPRequestBaton() {
}

}