Sha256: ca9d4cb984ae862a58e019643763d41469e8dd7d7e47bfbc704f1923ad82085c
Contents?: true
Size: 452 Bytes
Versions: 16
Compression:
Stored size: 452 Bytes
Contents
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #include <tao/json.hpp> #include "bench_mark.hpp" int main( int argc, char** argv ) { for( int i = 1; i < argc; ++i ) { tao::bench::mark( "json", argv[ i ], [&]() { tao::json::events::to_value consumer; tao::json::events::from_file( consumer, argv[ i ] ); } ); } return 0; }
Version data entries
16 entries across 16 versions & 1 rubygems