浏览代码

Fix cpp std version at least c++11

There's list loop enumeration and incompatible template codes which may cause compile errors due to different compilers.
AntiMoron 8 年之前
父节点
当前提交
81741628a8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      port/iOS/build.sh

+ 1 - 1
port/iOS/build.sh

@@ -22,7 +22,7 @@ CPP_DEV_TARGET_LIST=(miphoneos-version-min mios-simulator-version-min)
 CPP_DEV_TARGET=
 CPP_STD_LIB_LIST=(libc++ libstdc++)
 CPP_STD_LIB=
-CPP_STD_LIST=(c++03 c++11 c++14)
+CPP_STD_LIST=(c++11 c++14)
 CPP_STD=
 
 function join { local IFS="$1"; shift; echo "$*"; }