Make DomValue final

Signed-off-by: Nicholas Van Sickle <nvsickle@amazon.com>
This commit is contained in:
Nicholas Van Sickle
2021-12-15 10:23:58 -08:00
parent aa9799a63b
commit 352b4ab690
+1 -1
View File
@@ -147,7 +147,7 @@ namespace AZ::Dom
//! value itself (objects, arrays, and nodes) are copied by new Values only when their contents change, so care should be taken in
//! performance critical code to avoid mutation operations such as operator[] to avoid copies. It is recommended that an immutable Value
//! be explicitly be stored as a `const Value` to avoid accidental detach and copy operations.
class Value
class Value final
{
public:
// Constructors...