summaryrefslogtreecommitdiff
path: root/src/util/time.cpp
blob: 4cd8077f98e57886a24f4303f861b07392fda2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/util/time.hpp>
#include <mbgl/util/uv_detail.hpp>

namespace mbgl {
namespace util {

timestamp now() {
    return uv_hrtime();
}

}
}