summaryrefslogtreecommitdiff
path: root/render-test/render_test_number_format.cpp
blob: 93c0daa20c7061d366dec11facd2c1986d649ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <mbgl/i18n/number_format.hpp>

namespace mbgl {
namespace platform {

std::string formatNumber(double /*number*/,
                         const std::string& /*localeId */,
                         const std::string& /*currency*/,
                         uint8_t /*minFractionDigits*/,
                         uint8_t /*maxFractionDigits*/) {
    return ""; 
}

} // namespace platform
} // namespace mbgl