Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShelley Vohr <shelley.vohr@gmail.com>2021-05-20 12:35:39 +0300
committerJames M Snell <jasnell@gmail.com>2021-05-20 21:19:32 +0300
commit2cc60fc64728d4253fba9953cc1e27dc72c83c32 (patch)
tree43ac64b6a1174f57a4c579ef42ad5a1359e9c2c3 /src/node_blob.h
parent01940ee2857641b1ea08ab344f378253fe642b3b (diff)
src: remove more extra semis from member fns
PR-URL: https://github.com/nodejs/node/pull/38744 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'src/node_blob.h')
-rw-r--r--src/node_blob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_blob.h b/src/node_blob.h
index 965f65390bd..9d6178996c8 100644
--- a/src/node_blob.h
+++ b/src/node_blob.h
@@ -46,8 +46,8 @@ class Blob : public BaseObject {
}
void MemoryInfo(MemoryTracker* tracker) const override;
- SET_MEMORY_INFO_NAME(Blob);
- SET_SELF_SIZE(Blob);
+ SET_MEMORY_INFO_NAME(Blob)
+ SET_SELF_SIZE(Blob)
// Copies the contents of the Blob into an ArrayBuffer.
v8::MaybeLocal<v8::Value> GetArrayBuffer(Environment* env);