diff options
-rw-r--r-- | src/utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h index 1ea78620..ab8fb495 100644 --- a/src/utils.h +++ b/src/utils.h @@ -194,6 +194,11 @@ public: string(const string& str); string(const std::string& str); string(size_type len, char x); + template<class _InputIterator> + string(_InputIterator __beg, _InputIterator __end) + : std::string(__beg, __end) { + TRACE_CTOR(string, "InputIterator, InputIterator"); + } string(const char * str); string(const char * str, const char * end); string(const string& str, size_type x); |