Change default virtual destructor from '= default' to '{}' 80/25380/3
authorAdam Malinowski <a.malinowsk2@partner.samsung.com>
Mon, 4 Aug 2014 12:12:13 +0000 (14:12 +0200)
committerAdam Malinowski <a.malinowsk2@partner.samsung.com>
Tue, 5 Aug 2014 07:55:37 +0000 (09:55 +0200)
commit90f40c36c40d99533afc4326a9804c6a65f4e9e3
tree6c823bad5abd6c7c24f0f06ee5ea8213add11997
parentdd800411de0c60833227b59084cf6d157b9b8f76
Change default virtual destructor from '= default' to '{}'

'= default' seems to be problematic. Some compilers give error:
"declared virtual cannot be defaulted in the class body".

Change-Id: Iaca3a70f64e45309430bc010883a87fcdc536d1b
42 files changed:
src/admin/api/ApiInterface.h
src/admin/logic/Logic.h
src/client/api/ApiInterface.h
src/client/cache/CacheInterface.h
src/client/logic/Logic.h
src/common/exceptions/BucketDeserializationException.h
src/common/exceptions/BucketNotExistsException.h
src/common/exceptions/BucketRecordCorruptedException.h
src/common/exceptions/BucketSerializationException.h
src/common/exceptions/CannotCreateFileException.h
src/common/exceptions/DefaultBucketDeletionException.h
src/common/exceptions/DescriptorNotExistsException.h
src/common/exceptions/Exception.h
src/common/exceptions/FileNotFoundException.h
src/common/exceptions/InitException.h
src/common/exceptions/InvalidProtocolException.h
src/common/exceptions/NotImplementedException.h
src/common/exceptions/NullPointerException.h
src/common/exceptions/OutOfDataException.h
src/common/exceptions/PluginNotFoundException.h
src/common/exceptions/ServerConnectionErrorException.h
src/common/exceptions/UnexpectedErrorException.h
src/common/protocol/Protocol.h
src/common/protocol/ProtocolFrame.h
src/common/protocol/ProtocolFrameHeader.h
src/common/protocol/ProtocolSerialization.h
src/common/request/CheckRequest.h
src/common/request/InsertOrUpdateBucketRequest.h
src/common/request/RemoveBucketRequest.h
src/common/request/Request.h
src/common/request/RequestTaker.h
src/common/request/SetPoliciesRequest.h
src/common/request/SignalRequest.h
src/common/response/CheckResponse.h
src/common/response/CodeResponse.h
src/common/response/Response.h
src/common/response/ResponseTaker.h
src/common/sockets/SocketClient.h
src/service/storage/InMemoryStorageBackend.h
src/service/storage/StorageSerializer.h
test/storage/serializer/bucket_load.cpp
test/storage/serializer/serialize.cpp