Sha256: f2f77dbaf68b3eea1d6c25af62a4925394ab2fa984f3fddfa535302a4e7df2e7

Contents?: true

Size: 735 Bytes

Versions: 23

Compression:

Stored size: 735 Bytes

Contents

# Checks whether the compiler implements namespaces
AC_DEFUN([AC_CXX_NAMESPACES],
 [AC_CACHE_CHECK(whether the compiler implements namespaces,
                 ac_cv_cxx_namespaces,
                 [AC_LANG_SAVE
                  AC_LANG_CPLUSPLUS
                  AC_TRY_COMPILE([namespace Outer {
                                    namespace Inner { int i = 0; }}],
                                 [using namespace Outer::Inner; return i;],
                                 ac_cv_cxx_namespaces=yes,
                                 ac_cv_cxx_namespaces=no)
                  AC_LANG_RESTORE])
  if test "$ac_cv_cxx_namespaces" = yes; then
    AC_DEFINE(HAVE_NAMESPACES, 1, [define if the compiler implements namespaces])
  fi])

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
google_hash-0.9.0 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.9 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.8 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.7 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.6 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.5 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.4 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.3 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.2 ext/sparsehash-2.0.2/m4/namespaces.m4
google_hash-0.8.1 ext/sparsehash-1.8.1/m4/namespaces.m4
google_hash-0.8.0 ext/sparsehash-1.8.1/m4/namespaces.m4
google_hash-0.7.0 ext/sparsehash-1.8.1/m4/namespaces.m4
google_hash-0.6.2 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.6.1 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.6.0 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.5.1 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.4.0 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.3.1 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.3.0 ext/sparsehash-1.5.2/m4/namespaces.m4
google_hash-0.2.1 ext/sparsehash-1.5.2/m4/namespaces.m4