Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 940705
Collapse All | Expand All

(-)a/Data/include/Poco/Data/LOB.h (-1 / +2 lines)
Lines 63-69 public: Link Here
63
	{
63
	{
64
	}
64
	}
65
65
66
	LOB(const std::basic_string<T>& content):
66
	template<typename Content = std::basic_string<T>, typename = std::enable_if_t<std::is_same_v<Content, std::basic_string<T>>>>
67
	LOB(const Content& content):
67
		_pContent(new std::vector<T>(content.begin(), content.end()))
68
		_pContent(new std::vector<T>(content.begin(), content.end()))
68
		/// Creates a LOB from a string.
69
		/// Creates a LOB from a string.
69
	{
70
	{

Return to bug 940705