X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fdecoderoptions.cpp;h=0e44386eafa546781244af06bdfe33d004b4e770;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hp=063daf8e13d08739bc7241e50e0f2480eb388021;hpb=a28c30252fd32d3185c62062dfad74ae659ae383;p=pulseview.git diff --git a/pv/prop/binding/decoderoptions.cpp b/pv/prop/binding/decoderoptions.cpp index 063daf8..0e44386 100644 --- a/pv/prop/binding/decoderoptions.cpp +++ b/pv/prop/binding/decoderoptions.cpp @@ -23,7 +23,6 @@ #include "decoderoptions.h" #include -#include #include #include @@ -35,10 +34,10 @@ using boost::bind; using boost::none; -using boost::shared_ptr; using std::make_pair; using std::map; using std::pair; +using std::shared_ptr; using std::string; using std::vector; @@ -111,7 +110,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;