summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-03 18:21:23 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-03 18:21:23 +0100
commitc4d9b98c65f9fe0d05e7367d876e361484f56d4f (patch)
tree1881ef1a5a912ec4637077f044645940c2aa038b /build
parent37d1706b010ede18994fc4e6821829403a437d82 (diff)
downloadsigc++-c4d9b98c65f9fe0d05e7367d876e361484f56d4f.tar.gz
SIGC_CXX_HAS_SUN_REVERSE_ITERATOR: Add std:: now that I removed the using std.
See https://bugzilla.gnome.org/show_bug.cgi?id=762065#c2
Diffstat (limited to 'build')
-rw-r--r--build/cxx_std.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/build/cxx_std.m4 b/build/cxx_std.m4
index e902c55..c9f0700 100644
--- a/build/cxx_std.m4
+++ b/build/cxx_std.m4
@@ -13,7 +13,7 @@ AC_DEFUN([SIGC_CXX_HAS_SUN_REVERSE_ITERATOR],
[[
#include <iterator>
]],[[
- typedef reverse_iterator<char*,random_access_iterator_tag,char,char&,char*,int> ReverseIter;
+ typedef std::reverse_iterator<char*, std::random_access_iterator_tag, char, char&, char*, int> ReverseIter;
]])],
[sigc_cv_cxx_has_sun_reverse_iterator='yes'],
[sigc_cv_cxx_has_sun_reverse_iterator='no']