Dieser ist mein Code:C++ kann keine Objekte vom Typ nicht-POD passiert
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <stdio.h>
#include <curl/curl.h>
using namespace std;
int main()
{
ifstream llfile;
llfile.open("C:/log.txt");
if(!llfile.is_open()){
exit(EXIT_FAILURE);
}
string word;
llfile >> word;
llfile.close();
string url = "http://example/auth.php?ll=" + word;
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, url);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
}
return 0;
}
Das ist mein Fehler beim Kompilieren:
main.cpp | 29 | Warnung: kann keine Objekte von nicht passieren -POD Typ
'struct std::string'
bis'...'
; nennen
+1 für eine SSCCE, -1 für nicht wirklich ein zu fragen Frage. Äh, +0 ich denke ... – ildjarn