diff options
author | Determinant <[email protected]> | 2018-02-03 15:45:55 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2018-02-03 15:45:55 -0500 |
commit | 86b1bab87e0a4049f6fc9d2fedec323556f5ef27 (patch) | |
tree | 27d68bb22c9e2a956b515bef326e1da65934eb67 /Makefile | |
parent | 36f0bb49e5c3efbf9363b245e42ebdd74a0ab9ee (diff) |
eliminate the need for promise::None
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ .PHONY: all all: test14 test17 test14: test.cpp promise.hpp - g++ -o $@ test.cpp -std=c++17 + g++ -o $@ test.cpp -std=c++14 -Wall -Wextra -Wpedantic -O2 test17: test.cpp promise.hpp - g++ -o $@ test.cpp -std=c++14 + g++ -o $@ test.cpp -std=c++17 -Wall -Wextra -Wpedantic -O2 |