From ff5b80ce11cbb73351fd377fdf78a59dc96afff4 Mon Sep 17 00:00:00 2001 From: Eduardo Gomes Date: Sat, 10 Oct 2020 19:35:14 -0300 Subject: [PATCH] Use min and max from algorithm instead of cmath --- Makefile | 1 - src/simetrica.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4da1491..a8000d4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ CC := g++ CPPFLAGS := -Wall -g -LDLIBS = -lstdc++ -lm OUT := main SRC_DIR := ./src diff --git a/src/simetrica.cpp b/src/simetrica.cpp index a4dde0c..1517ef1 100644 --- a/src/simetrica.cpp +++ b/src/simetrica.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include "aresta.h" #include "simetrica.h" @@ -39,4 +39,4 @@ Simetrica::Simetrica() { map, double> esparsa; this->esparsa = esparsa; this->ordem = 0; -}; \ No newline at end of file +};