X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fdecoderoptions.cpp;h=6e0630c00dd1d55f853c8614d97589b9566b12b6;hp=063daf8e13d08739bc7241e50e0f2480eb388021;hb=f46e495ef1db0a4e522462ac18260f2151fa2b89;hpb=95d431080479af44919a10ac317c563b39098605 diff --git a/pv/prop/binding/decoderoptions.cpp b/pv/prop/binding/decoderoptions.cpp index 063daf8e..6e0630c0 100644 --- a/pv/prop/binding/decoderoptions.cpp +++ b/pv/prop/binding/decoderoptions.cpp @@ -111,7 +111,7 @@ GVariant* DecoderOptions::getter(const char *id) // Get the value from the hash table if it is already present const map& options = _decoder->options(); - map::const_iterator iter = options.find(id); + const auto iter = options.find(id); if (iter != options.end()) val = (*iter).second;