Commit ed9f00ba authored by Davis King's avatar Davis King

Fully qualified the char_traits references to avoid name conflicts in

certain rare cases.
parent 1b23bb13
......@@ -295,7 +295,7 @@ namespace dlib
T temp;
sin >> temp;
if (!sin) throw string_cast_error(narrow(str));
if (sin.get() != char_traits<charT>::eof()) throw string_cast_error(narrow(str));
if (sin.get() != std::char_traits<charT>::eof()) throw string_cast_error(narrow(str));
return temp;
}
};
......@@ -355,7 +355,7 @@ namespace dlib
else \
sin >> temp; \
if (!sin) throw string_cast_error(narrow(str)); \
if (sin.get() != char_traits<charT>::eof()) throw string_cast_error(narrow(str)); \
if (sin.get() != std::char_traits<charT>::eof()) throw string_cast_error(narrow(str)); \
return temp; \
} \
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment