Skip to content

Commit 5fe82b2

Browse files
committed
Using xtd::any_object instead std::any
1 parent 373e3f0 commit 5fe82b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/xtd.core/include/xtd/collections/any_pair.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// @copyright Copyright (c) 2025 Gammasoft. All rights reserved.
44
#pragma once
55
#include "generic/key_value_pair.hpp"
6-
#include "../any.hpp"
6+
#include "../any_object.hpp"
77
#include <utility>
88

99
/// @brief The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
@@ -12,7 +12,7 @@ namespace xtd {
1212
namespace collections {
1313
/// @brief Implements a xtd::collections::generic::key_value_pair with the key and the value strongly typed to be std::any.
1414
/// ```cpp
15-
/// using any_pair = xtd::collections::generic::key_value_pair<std::any, std::any>
15+
/// using any_pair = xxtd::collections::generic::key_value_pair<xtd::any_object, xtd::any_object>;
1616
/// ```
1717
/// @par Header
1818
/// ```cpp
@@ -23,6 +23,6 @@ namespace xtd {
2323
/// @par Library
2424
/// xtd.core
2525
/// @ingroup xtd_core collections
26-
using any_pair = xtd::collections::generic::key_value_pair<std::any, std::any>;
26+
using any_pair = xtd::collections::generic::key_value_pair<xtd::any_object, xtd::any_object>;
2727
}
2828
}

0 commit comments

Comments
 (0)