Replaced BOOST_FOREACH with C++11 range-based for loops
[pulseview.git] / pv / prop / binding / decoderoptions.cpp
index 063daf8e13d08739bc7241e50e0f2480eb388021..930e1f0aee14c77a860ca8242b729218fdc614be 100644 (file)
@@ -23,7 +23,6 @@
 #include "decoderoptions.h"
 
 #include <boost/bind.hpp>
-#include <boost/foreach.hpp>
 #include <boost/none_t.hpp>
 
 #include <pv/data/decoderstack.h>
@@ -111,7 +110,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;