resolve #17, fix wrong description and example for constexpr

This commit is contained in:
Changkun Ou
2018-04-19 09:48:44 +02:00
parent a2c90ba7df
commit 2e63a68751
3 changed files with 15 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
all: $(patsubst %.cpp, %.out, $(wildcard *.cpp))
%.out: %.cpp Makefile
clang++ $< -o $@ -std=c++17
clang++ $< -o $@ -std=c++17 -pedantic
clean:
rm *.out