@@ -414,7 +414,7 @@ class MRDOCS_DECL Value
414414 via @ref Scope::reset.
415415
416416 */
417- MRDOCS_DECL ~Value ();
417+ ~Value ();
418418
419419 /* * Constructor
420420
@@ -424,36 +424,36 @@ class MRDOCS_DECL Value
424424 The value is undefined.
425425
426426 */
427- MRDOCS_DECL Value () noexcept ;
427+ Value () noexcept ;
428428
429429 /* * Constructor
430430
431431 The function pushes a duplicate of
432432 value to the stack and associates
433433 the new value the top of the stack.
434434 */
435- MRDOCS_DECL Value (Value const &);
435+ Value (Value const &);
436436
437437 /* * Constructor
438438
439439 The function associates the
440440 existing value with this object.
441441 */
442- MRDOCS_DECL Value (Value&&) noexcept ;
442+ Value (Value&&) noexcept ;
443443
444444 /* * Copy assignment.
445445
446446 @copydetails Value(Value const&)
447447
448448 */
449- MRDOCS_DECL Value& operator =(Value const &);
449+ Value& operator =(Value const &);
450450
451451 /* * Move assignment.
452452
453453 @copydetails Value(Value&&)
454454
455455 */
456- MRDOCS_DECL Value& operator =(Value&&) noexcept ;
456+ Value& operator =(Value&&) noexcept ;
457457
458458 /* * Return the type of the value.
459459
@@ -476,7 +476,7 @@ class MRDOCS_DECL Value
476476 internal ECMAScript class `Function`.
477477
478478 */
479- MRDOCS_DECL Type type () const noexcept ;
479+ Type type () const noexcept ;
480480
481481 // / Check if the value is undefined.
482482 bool
@@ -706,15 +706,13 @@ class MRDOCS_DECL Value
706706
707707 /* * Set or replace the value for a given key.
708708 */
709- MRDOCS_DECL
710709 void
711710 set (
712711 std::string_view key,
713712 Value const & value) const ;
714713
715714 /* * Set or replace the value for a given key.
716715 */
717- MRDOCS_DECL
718716 void
719717 set (
720718 std::string_view key,
@@ -932,16 +930,13 @@ class MRDOCS_DECL Value
932930 toString (Value const & value);
933931
934932private:
935- MRDOCS_DECL
936933 Expected<Value>
937934 callImpl (
938935 std::initializer_list<dom::Value> args) const ;
939936
940- MRDOCS_DECL
941937 Expected<Value>
942938 callImpl (std::span<dom::Value> args) const ;
943939
944- MRDOCS_DECL
945940 Expected<Value>
946941 callPropImpl (
947942 std::string_view prop,
0 commit comments