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

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Vogel <post@steffenvogel.de>2019-04-25 23:57:19 +0300
committervitalyster <vitalyster@gmail.com>2019-04-26 00:47:32 +0300
commitbf6b5b689b88428c020f5f8b708d742d61ac3ac0 (patch)
treeb643ec789d8cb6849fe22aec2257ab7f97e1869c /include
parent410005fb6eb322281d64f10b568098f09e3e2436 (diff)
add missing implementation of virtual destructor
Diffstat (limited to 'include')
-rw-r--r--include/transport/Factory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/transport/Factory.h b/include/transport/Factory.h
index f868ee07..78248717 100644
--- a/include/transport/Factory.h
+++ b/include/transport/Factory.h
@@ -39,7 +39,8 @@ class Factory {
virtual Buddy *createBuddy(RosterManager *rosterManager, const BuddyInfo &buddyInfo) = 0;
- virtual ~Factory();
+ virtual ~Factory()
+ { }
};
}