From 224bb06600e787b09063bc43d8585a10beefd73b Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Thu, 14 Nov 2024 11:58:23 -0700 Subject: [PATCH] lint --- addon/compression_worker.h | 3 ++- addon/napi_utils.h | 2 +- addon/zstd.cpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/addon/compression_worker.h b/addon/compression_worker.h index 38ef355..60d7949 100644 --- a/addon/compression_worker.h +++ b/addon/compression_worker.h @@ -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: diff --git a/addon/napi_utils.h b/addon/napi_utils.h index 2f54e8d..dce502d 100644 --- a/addon/napi_utils.h +++ b/addon/napi_utils.h @@ -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 getBytesFromUint8Array(const Uint8Array& source) { diff --git a/addon/zstd.cpp b/addon/zstd.cpp index b079008..e09ff56 100644 --- a/addon/zstd.cpp +++ b/addon/zstd.cpp @@ -5,8 +5,8 @@ #include #include -#include "compression_worker.h" #include "compress.h" +#include "compression_worker.h" #include "decompress.h" #include "napi_utils.h"