chromium/third_party/icu/source/i18n/number_decimfmtprops.cpp

// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

#include "unicode/utypes.h"

#if !UCONFIG_NO_FORMATTING

#include "number_decimfmtprops.h"
#include "umutex.h"

usingnamespaceicu;
usingnamespaceicu::number;
usingnamespaceicu::number::impl;


namespace {

alignas(DecimalFormatProperties)
char kRawDefaultProperties[sizeof(DecimalFormatProperties)];

icu::UInitOnce gDefaultPropertiesInitOnce {};

void U_CALLCONV initDefaultProperties(UErrorCode&) {}

}


DecimalFormatProperties::DecimalFormatProperties() {}

void DecimalFormatProperties::clear() {}

bool
DecimalFormatProperties::_equals(const DecimalFormatProperties& other, bool ignoreForFastFormat) const {}

bool DecimalFormatProperties::equalsDefaultExceptFastFormat() const {}

const DecimalFormatProperties& DecimalFormatProperties::getDefault() {}

#endif /* #if !UCONFIG_NO_FORMATTING */