OpenVPN 3 Core Library
Loading...
Searching...
No Matches
to_string.hpp File Reference
#include <string>
#include <sstream>
#include <type_traits>
#include <openvpn/common/platform.hpp>
Include dependency graph for to_string.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  openvpn
 

Functions

template<typename T >
requires (!requires(T a) { std::to_string(a); }) && requires(std::ostream &os, const T &t) { os << t; }
std::string openvpn::to_string (const T &t)
 Convert a value to a string.