mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
It is better to manage warnings on our side to know what warnings we need to fix or suppress, and the only thing that header does is disabling deprecation warnings on MSVC and ICC which we would prefer to not show to users.
25 lines
711 B
C++
25 lines
711 B
C++
// Copyright (c) 2012 Agustin K-ballo Berge
|
|
// Copyright (c) 2001-2012 Hartmut Kaiser
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include <boost/spirit/include/karma.hpp>
|
|
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
#include <iterator>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
int main()
|
|
{
|
|
namespace karma = boost::spirit::karma;
|
|
std::string output;
|
|
std::back_insert_iterator< std::string > sink = std::back_inserter( output );
|
|
karma::generate( sink, karma::double_, 0 ); // prints ¨inf¨ instead of ¨0.0¨
|
|
BOOST_TEST((output == "0.0"));
|
|
return boost::report_errors();
|
|
}
|
|
|