Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: tools/nixysa/third_party/gflags-1.0/m4/namespaces.m4

Issue 2043006: WTF NPAPI extension. Early draft. Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Checks whether the compiler implements namespaces
2 AC_DEFUN([AC_CXX_NAMESPACES],
3 [AC_CACHE_CHECK(whether the compiler implements namespaces,
4 ac_cv_cxx_namespaces,
5 [AC_LANG_SAVE
6 AC_LANG_CPLUSPLUS
7 AC_TRY_COMPILE([namespace Outer {
8 namespace Inner { int i = 0; }}],
9 [using namespace Outer::Inner; return i;],
10 ac_cv_cxx_namespaces=yes,
11 ac_cv_cxx_namespaces=no)
12 AC_LANG_RESTORE])
13 if test "$ac_cv_cxx_namespaces" = yes; then
14 AC_DEFINE(HAVE_NAMESPACES, 1, [define if the compiler implements namespaces] )
15 fi])
OLDNEW
« no previous file with comments | « tools/nixysa/third_party/gflags-1.0/m4/google_namespace.m4 ('k') | tools/nixysa/third_party/gflags-1.0/m4/stl_namespace.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698