Brace yourselves! C++ newbie question incoming:
Can someone explain to me why this error occurs and how should I fix it?
std::vector<std::string> options = vectorOGROptions_.get() I want to get options var as std::vector<std::string> but it seems my vectorOGROptions property returns a different type..
error: conversion from ‘const std::basic_string<char>’ to non-scalar type ‘std::vector<std::basic_string<char> >’ requested
std::vector<std::string> options(1, vectorOGROptions_.get());.