c++templatesboost-program-optionsboost-any

Type un-erasure from a boost::program_options value


I'm trying to retrofit my program with boost::program_options. Among other things, I've written a function which I just can't get to compile. Here's a sort-of-minimal .cpp file which fails compilation:

#include <boost/program_options.hpp>

template <typename C, typename E>
inline bool contains(const C& container, const E& element) {
    return container.find(element) != container.end();
}

template <typename K, typename V>
V& updateFromConfig(V& updatee, const K& key, const po::variables_map& vm) {
    if (contains(vm, key)) {
        // option 1
        updatee = vm[key];
        // option 2
        //updatee = vm[key].variable_value();
        // option 3
        // updatee = vm[key].as<V>();
        // option 4
        // updatee = vm[key].as();
    }
    return updatee;
}

template size_t& updateFromConfig<char*,size_t>(size_t& updatee, char* const& key, const po::variables_map& vm);

With any of the four options I get a different compiler error:

What am I doing wrong?


Solution

  • C++ syntax for the win. Do:

    updatee = vm[key].template as<V>();