summaryrefslogtreecommitdiff
path: root/platform/android/src/test/render_test_number_format.cpp
blob: 57710c8558e8b4673063f7822a71e185e38118e7 (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