File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 11#include " ../../include/xtd/as.hpp"
22#include " ../../include/xtd/hash_code.hpp"
33#include " ../../include/xtd/iformatable.hpp"
4+ #include " ../../include/xtd/istringable.hpp"
45#include " ../../include/xtd/invalid_cast_exception.hpp"
56#include " ../../include/xtd/object.hpp"
67#include " ../../include/xtd/type_object.hpp"
@@ -38,6 +39,10 @@ std::ostream& operator <<(std::ostream& os, const object& obj) noexcept {
3839 return os << obj.to_string ();
3940}
4041
41- std::string __object_to_string__ (const xtd::object& obj) {
42+ std::string __object_to_string__ (const xtd::object& obj) noexcept {
4243 return obj.to_string ();
4344}
45+
46+ std::string __istringable_to_string__ (const xtd::istringable& stringable) noexcept {
47+ return stringable.to_string ();
48+ }
You can’t perform that action at this time.
0 commit comments