mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
@ -1,6 +1,7 @@
|
||||
Version 92:
|
||||
|
||||
* Fix typo in test/CMakeLists.txt
|
||||
* basic_fields::value_type is not copyable
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -85,6 +85,12 @@ public:
|
||||
field f_;
|
||||
|
||||
public:
|
||||
/// Constructor (deleted)
|
||||
value_type(value_type const&) = delete;
|
||||
|
||||
/// Assignment (deleted)
|
||||
value_type& operator=(value_type const&) = delete;
|
||||
|
||||
/// Returns the field enum, which can be @ref field::unknown
|
||||
field
|
||||
name() const;
|
||||
|
Reference in New Issue
Block a user