Spicy
any.h
1 // Copyright (c) 2020-2021 by the Zeek Project. See LICENSE for details.
2 
3 #pragma once
4 
5 #include <string>
6 
7 #include <hilti/rt/any.h>
8 #include <hilti/rt/extension-points.h>
9 
10 namespace hilti::rt {
11 
12 namespace detail::adl {
13 inline std::string to_string(const hilti::rt::any& x, adl::tag /*unused*/) { return "<any value>"; }
14 
15 } // namespace detail::adl
16 
17 } // namespace hilti::rt
std::string to_string(T &&x)
Definition: extension-points.h:26
Definition: any.h:7