summaryrefslogtreecommitdiff
path: root/common/linux.cpp
blob: 6132ace692259787bc8015d96d66767f8bf92837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/platform/platform.hpp>

namespace mbgl {
namespace platform {

// Returns the path to the default cache database on this system.
std::string defaultCacheDatabase() {
    return "/tmp/mbgl-cache.db";
}

}
}