int webServerPort = -1;
void configure(std::string responseFile, callback_function call_back, std::string urlRegex = NULL) {
std::string url = "http://0.0.0.0:" + webServerPort + "fake_settings/?file=" + responseFile;
if(urlRegex != NULL) { // GOT ERROR HERE
url += "&pattern=" + urlRegex;
}
エラーを取得します、実際には「エラー」ではなく「メモ」と呼ばれます
エラーの内容: 注: 'std::string {aka std::basic_string}' は 'const __gnu_cxx::__normal_iterator<_IteratorL, _Container>' から派生していません
誰かがそれについて何か考えますか?
ありがとう