Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Nov 14, 2024
1 parent 3a3e127 commit 224bb06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion addon/compression_worker.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ struct CompressionResult {
};

/**
* @brief An asynchronous Napi::Worker that can be with any function that produces CompressionResults.
* @brief An asynchronous Napi::Worker that can be with any function that produces
* CompressionResults.
* */
class CompressionWorker : public Napi::AsyncWorker {
public:
Expand Down
2 changes: 1 addition & 1 deletion addon/napi_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using namespace Napi;

/**
* @brief Get the Bytes From Uint8 Array object
*
*
* this function copies the bytes out of the Uint8Array.
*/
std::vector<uint8_t> getBytesFromUint8Array(const Uint8Array& source) {
Expand Down
2 changes: 1 addition & 1 deletion addon/zstd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <string>
#include <vector>

#include "compression_worker.h"
#include "compress.h"
#include "compression_worker.h"
#include "decompress.h"
#include "napi_utils.h"

Expand Down

0 comments on commit 224bb06

Please sign in to comment.