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:
Diffstat (limited to 'src/async-wrap.cc')
-rw-r--r--src/async-wrap.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/async-wrap.cc b/src/async-wrap.cc
index 405b9d17017..60124e47ad8 100644
--- a/src/async-wrap.cc
+++ b/src/async-wrap.cc
@@ -38,11 +38,11 @@ class RetainedAsyncInfo: public RetainedObjectInfo {
public:
explicit RetainedAsyncInfo(uint16_t class_id, AsyncWrap* wrap);
- virtual void Dispose() override;
- virtual bool IsEquivalent(RetainedObjectInfo* other) override;
- virtual intptr_t GetHash() override;
- virtual const char* GetLabel() override;
- virtual intptr_t GetSizeInBytes() override;
+ void Dispose() override;
+ bool IsEquivalent(RetainedObjectInfo* other) override;
+ intptr_t GetHash() override;
+ const char* GetLabel() override;
+ intptr_t GetSizeInBytes() override;
private:
const char* label_;