Browse Source

std=c++11

Rafael Arce Nazario 4 years ago
parent
commit
3e5b789164
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

@@ -1,5 +1,5 @@
1 1
 all: main.o Rational.o
2
-	g++ -o main main.o Rational.o
2
+	g++ -o main main.o Rational.o -std=c++11
3 3
 
4 4
 main.o: main.cpp
5 5
 	g++ -c main.cpp