]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/decoderoptions.cpp
Replaced lengthy iterator types with the auto keyword
[pulseview.git] / pv / prop / binding / decoderoptions.cpp
index 063daf8e13d08739bc7241e50e0f2480eb388021..6e0630c00dd1d55f853c8614d97589b9566b12b6 100644 (file)
@@ -111,7 +111,7 @@ GVariant* DecoderOptions::getter(const char *id)
 
        // Get the value from the hash table if it is already present
        const map<string, GVariant*>& options = _decoder->options();
-       map<string, GVariant*>::const_iterator iter = options.find(id);
+       const auto iter = options.find(id);
 
        if (iter != options.end())
                val = (*iter).second;