From c5bdaf2bc1983a2264f275b555fd078c39a5e435 Mon Sep 17 00:00:00 2001 From: klugier Date: Fri, 21 Aug 2020 22:31:55 +0000 Subject: [PATCH] Bazaar: GoogleMockExample destructors are now using =default syntax. git-svn-id: svn://ultimatepp.org/upp/trunk@14863 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/GoogleMockExample/GoogleMockExample.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazaar/GoogleMockExample/GoogleMockExample.cpp b/bazaar/GoogleMockExample/GoogleMockExample.cpp index cb0c996a3..1ba18e9bf 100644 --- a/bazaar/GoogleMockExample/GoogleMockExample.cpp +++ b/bazaar/GoogleMockExample/GoogleMockExample.cpp @@ -9,7 +9,7 @@ const String CAR_REGISTRATION_NUMBER = "UPP IS THE BEST"; class Car { public: - virtual ~Car() {} + virtual ~Car() = default; virtual void OpenHood() = 0; virtual String ReadRegistrationNumbers() = 0;