📄 ac_cxx_have_new_iostream.m4
字号:
dnl @synopsis AC_CXX_HAVE_NEW_IOSTREAMdnldnl If the C++ library has a working ASNI compliant iostream, define HAVE_NEW_IOSTREAM.dnldnl @author Huang-Ming Huangdnl @version $Id: ac_cxx_have_new_iostream.m4,v 1.1.1.1 2001/08/01 07:38:42 mangelo Exp $dnlAC_DEFUN([AC_CXX_HAVE_NEW_IOSTREAM],[AC_CACHE_CHECK(whether the compiler has ASNI compliant iostream,ac_cv_cxx_have_new_iostream,[AC_REQUIRE([AC_CXX_NAMESPACES]) AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE([#include <ios>using namespace std;],[ios_base::iostate state = ios_base::goodbit; return 0;], ac_cv_cxx_have_new_iostream=yes, ac_cv_cxx_have_new_iostream=no) AC_LANG_RESTORE])if test "$ac_cv_cxx_have_new_iostream" = yes; then AC_DEFINE(HAVE_NEW_IOSTREAM,,[define if the compiler has ASNI compliant iostream])fi])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -