Skip to content

Commit

Permalink
common_type used in operators
Browse files Browse the repository at this point in the history
  • Loading branch information
SR71 committed Jul 2, 2015
1 parent 8047f79 commit dfa6399
Show file tree
Hide file tree
Showing 5 changed files with 821 additions and 324 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# $@ -- The file name of the target of the rule.
# $* -- The stem with which an implicit rule matches
# $< -- The name of the first prerequisite.
# $^ -- The names of all the prerequisites
# $(VARS:%.cpp=%.o) -- pattern replace

CC:=g++-4.9

OPTS:=-std=c++14 -fmax-errors=5 -g -O0 -Wsign-compare -Wreturn-type -Wparentheses -Wpedantic -Wconversion-null


test_aga2: tests/test_aga2.cpp aga2.hpp
${CC} -o test_aga2 tests/test_aga2.cpp ${OPTS}

clean:
rm -rf b/* bin/*
Loading

0 comments on commit dfa6399

Please sign in to comment.