Skip to content

Commit

Permalink
lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Nov 8, 2024
1 parent 320f1ea commit 81135fa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/clp_ffi_js/ir/StreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <clp/Array.hpp>
#include <clp/ErrorCode.hpp>
#include <clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/ReaderInterface.hpp>
#include <clp/streaming_compression/zstd/Decompressor.hpp>
Expand Down
1 change: 0 additions & 1 deletion src/clp_ffi_js/ir/StreamReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <cstdint>
#include <memory>

#include <clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/streaming_compression/zstd/Decompressor.hpp>
#include <emscripten/val.h>

Expand Down
3 changes: 1 addition & 2 deletions src/clp_ffi_js/ir/StructuredIrStreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ auto StructuredIrStreamReader::deserialize_stream() -> size_t {
continue;
}
auto const error{result.error()};
if (std::errc::operation_not_permitted == error)
{
if (std::errc::operation_not_permitted == error) {
break;
}
if (std::errc::result_out_of_range == error) {
Expand Down

0 comments on commit 81135fa

Please sign in to comment.