Remove UINT32_MAX in xml_node.cc
UINT32_MAX is not defined in C++. It was brought in indirectly from libxml. http://stackoverflow.com/questions/1471353/whats-the-c-equivalent-of-uint32-max Change-Id: I1bdb0a3d06a40d439d81f283934c24df271fb740
This commit is contained in:
parent
e21f436d97
commit
aee2419c16
|
@ -423,7 +423,7 @@ bool RepresentationXmlNode::AddAudioChannelInfo(
|
|||
void RepresentationXmlNode::AddAudioSamplingRateInfo(
|
||||
const RepeatedAudioInfo& repeated_audio_info) {
|
||||
bool has_sampling_frequency = false;
|
||||
uint32 min_sampling_frequency = UINT32_MAX;
|
||||
uint32 min_sampling_frequency = kuint32max;
|
||||
uint32 max_sampling_frequency = 0;
|
||||
|
||||
for (int i = 0; i < repeated_audio_info.size(); ++i) {
|
||||
|
|
Loading…
Reference in New Issue