From: André Pönitz Date: Mon, 13 Aug 2007 07:25:40 +0000 (+0000) Subject: std::count is now assumed to exist, remove the check for it X-Git-Tag: 1.6.10~8921 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ccf0557869987047f002b31328346b28166bd975;p=features.git std::count is now assumed to exist, remove the check for it git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19496 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 4684f7d7d6..568af6cc96 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -945,14 +945,6 @@ result = utils.createConfigFile(conf, ('mktemp', 'HAVE_MKTEMP', None), ('mkstemp', 'HAVE_MKSTEMP', None), ('strerror', 'HAVE_STRERROR', None), - ('count', 'HAVE_STD_COUNT', ''' -#include -int count() -{ -char a[] = "hello"; -return std::count(a, a+5, 'l'); -} -'''), ('getcwd', 'HAVE_GETCWD', None), ('setenv', 'HAVE_SETENV', None), ('putenv', 'HAVE_PUTENV', None),