changeset 3506:ed0e55953260

[project @ 2000-02-01 11:19:27 by jwe]
author jwe
date Tue, 01 Feb 2000 11:19:27 +0000
parents 5a2c5361dbf1
children 00fdd363c098
files ChangeLog aclocal.m4
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-01  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* aclocal.m4 (octave_cv_string_npos): Add std:: qualifier.
+
 2000-01-27  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* emacs/octave-mod.el (octave-begin-keywords): Add "do".
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -438,7 +438,7 @@
 [size_t foo = NPOS],
 octave_cv_string_npos=yes, octave_cv_string_npos=no)])
 if test $octave_cv_string_npos = no; then
-  AC_DEFINE(NPOS, string::npos)
+  AC_DEFINE(NPOS, std::string::npos)
 fi
 AC_LANG_RESTORE
 ])