Make compatible with Debian

More precise ly make compatible with `gcc version 10.2.1 20210110 (Debian 10.2.1-6)`
This commit is contained in:
Benjamin Loison 2023-01-02 18:23:30 +01:00
parent 7a1eac5e40
commit 68800a25a0
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
.PHONY: main
main:
g++ main.cpp -g -lcurl -o main
g++ main.cpp -g -std=c++17 -lcurl -o main

View File

@ -1,5 +1,6 @@
#include <iostream>
#include <fstream>
#include <sstream>
#include <set>
#include <sys/stat.h>
#include <curl/curl.h>