1
0
mirror of synced 2025-07-29 11:01:13 +03:00

Changed examples to use the generic lambda.

This commit is contained in:
yhirose
2014-07-11 21:51:49 -04:00
parent 98e3e7b3c1
commit 34e5903167
4 changed files with 12 additions and 12 deletions

View File

@ -3,10 +3,10 @@ USE_CLANG = 1
ifdef USE_CLANG
CC = clang++
CFLAGS = -std=c++0x -stdlib=libc++ -g
CFLAGS = -std=c++1y -stdlib=libc++ -g
else
CC = g++
CFLAGS = -std=c++11 -g
CC = g++-4.9
CFLAGS = -std=c++1y -g
endif
all: server client hello simplesvr