fix error: ‘nullptr’ was not declared in this scope (#43)

This commit is contained in:
Ziyue Huang 2017-04-24 01:44:11 +08:00 committed by Tianqi Chen
parent a1acf23b60
commit ab5f203b44

View File

@ -2,7 +2,7 @@ export CC = gcc
export CXX = g++ export CXX = g++
export MPICXX = mpicxx export MPICXX = mpicxx
export LDFLAGS= -pthread -lm -L../lib export LDFLAGS= -pthread -lm -L../lib
export CFLAGS = -Wall -O3 -msse2 -Wno-unknown-pragmas -fPIC -fopenmp -I../include export CFLAGS = -Wall -O3 -msse2 -std=c++11 -Wno-unknown-pragmas -fPIC -fopenmp -I../include
.PHONY: clean all lib libmpi .PHONY: clean all lib libmpi
BIN = basic.rabit broadcast.rabit BIN = basic.rabit broadcast.rabit