summaryrefslogtreecommitdiff
path: root/boost/spirit/home/support/char_set/range.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/support/char_set/range.hpp')
-rw-r--r--boost/spirit/home/support/char_set/range.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/spirit/home/support/char_set/range.hpp b/boost/spirit/home/support/char_set/range.hpp
index 6d1f661996..1973889645 100644
--- a/boost/spirit/home/support/char_set/range.hpp
+++ b/boost/spirit/home/support/char_set/range.hpp
@@ -22,7 +22,7 @@ namespace boost { namespace spirit { namespace support { namespace detail
typedef T value_type;
range() : first(), last() {}
- range(T first, T last) : first(first), last(last) {}
+ range(T first_, T last_) : first(first_), last(last_) {}
T first;
T last;