see #1: concepts demo

This commit is contained in:
Changkun Ou
2019-07-11 12:34:14 +02:00
parent 7a4a605e0f
commit 69e4c6243d
5 changed files with 121 additions and 18 deletions

7
code/10/Makefile Normal file
View File

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