diff options
Diffstat (limited to 'modules/tools/c++')
-rw-r--r-- | modules/tools/c++/cli_analyzer.hpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/tools/c++/cli_analyzer.hpp b/modules/tools/c++/cli_analyzer.hpp index 402f03c..a1dc731 100644 --- a/modules/tools/c++/cli_analyzer.hpp +++ b/modules/tools/c++/cli_analyzer.hpp @@ -22,10 +22,10 @@ struct cli_modifier { codec<Schema, Encoding> encoded; error_or<void> read( - std::deque<std::string>& sch_path, - data<Schema, Encoding>& enc_data, - std::string& json_data_str - ){ + std::deque<std::string>& sch_path, + data<Schema, Encoding>& enc_data, + std::string& json_data_str + ){ data<Schema, encode::Native> native; if constexpr ( std::is_same_v<Encoding, encode::Native> ){ auto eov = encoded.decode<encode::Native>(enc_data, native); @@ -162,8 +162,7 @@ int modify_data_on_cli(bool read_mode, const std::string& file_path, std::deque< * Read data from file */ - - data<Schema, Encoding> data; + data<Schema, Encoding> data; data<Schema, encode::Native> native_data; if (read_mode) { |