From 0e43b3073603c1da4ee1fb771cee46726d26486c Mon Sep 17 00:00:00 2001 From: neingeist Date: Mon, 18 Aug 2014 22:36:30 +0200 Subject: [PATCH] poly: remove extra semicolon --- poly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poly.cpp b/poly.cpp index 8e5c2dc..1dfaf1e 100644 --- a/poly.cpp +++ b/poly.cpp @@ -5,7 +5,7 @@ class Animal { public: // virtual std::string talk() = 0; /* pure virtual */ - virtual std::string talk() { ; /* or an implementation */ + virtual std::string talk() { /* or an implementation */ return ""; } };