mirror of
https://github.com/boostorg/io.git
synced 2025-07-30 04:17:13 +02:00
String may be const type so disable assignment
[SVN r63135]
This commit is contained in:
@ -57,6 +57,9 @@ namespace boost
|
|||||||
|
|
||||||
quoted_proxy(String s_, Char escape_, Char delim_)
|
quoted_proxy(String s_, Char escape_, Char delim_)
|
||||||
: string(s_), escape(escape_), delim(delim_) {}
|
: string(s_), escape(escape_), delim(delim_) {}
|
||||||
|
private:
|
||||||
|
// String may be a const type, so disable the assignment operator
|
||||||
|
quoted_proxy& operator=(const quoted_proxy&); // = deleted
|
||||||
};
|
};
|
||||||
|
|
||||||
// abstract away difference between proxies with const or non-const basic_strings
|
// abstract away difference between proxies with const or non-const basic_strings
|
||||||
|
Reference in New Issue
Block a user