Skip to content

Commit ed6824d

Browse files
committed
Drop C++11 support which is now not required since we've switched to use acutest unittest framework.
1 parent 4464aa5 commit ed6824d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CXX = clang++
44
CXXFLAGS ?= -g -O1
55

66
tester: tester.cc ../tiny_obj_loader.h
7-
$(CXX) $(CXXFLAGS) -std=c++11 -fsanitize=address -o tester tester.cc
7+
$(CXX) $(CXXFLAGS) -fsanitize=address -o tester tester.cc
88

99
all: tester
1010

0 commit comments

Comments
 (0)