One Hat Cyber Team
Your IP :
216.73.216.64
Server IP :
162.240.179.46
Server :
Linux vps-14493116.nutrivittasaude.com.br 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
boost
/
convert
/
Edit File:
lexical_cast.hpp
// Copyright (c) 2009-2020 Vladimir Batov. // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt. #ifndef BOOST_CONVERT_LEXICAL_CAST_HPP #define BOOST_CONVERT_LEXICAL_CAST_HPP #include <boost/lexical_cast.hpp> namespace boost { namespace cnv { struct lexical_cast; }} /// @brief boost::lexical_cast-based converter /// @details The purpose of the converter is to /// * Make use of the boost::lexical_cast functionality and performance that many people have become /// accustomed to and comfortable with; /// * Demonstrate how existing independent conversion/transformation-related facilities might be // incorporated in to the Boost.Convert framework. /// /// The converter can easily replace boost::lexical_cast, adding flexibility and convenience. struct boost::cnv::lexical_cast { template<typename TypeOut, typename TypeIn> void operator()(TypeIn const& value_in, boost::optional<TypeOut>& result_out) const { try { result_out = boost::lexical_cast<TypeOut>(value_in); } catch (boost::bad_lexical_cast const&) { } } }; #endif // BOOST_CONVERT_LEXICAL_CAST_HPP
Simpan