[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:37:08 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=8041d70
The following commit has been merged in the master branch:
commit 8041d703be54609d69e10ecde8f885b1292c0c8c
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Sat Jun 4 07:32:20 2005 +0000
Fixed compiler warnings from g++-4
---
src/actions.hpp | 2 ++
src/exiv2.cpp | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/actions.hpp b/src/actions.hpp
index 511eaf4..593122a 100644
--- a/src/actions.hpp
+++ b/src/actions.hpp
@@ -73,6 +73,8 @@ namespace Action {
public:
//! Shortcut for an auto pointer.
typedef std::auto_ptr<Task> AutoPtr;
+ //! Virtual destructor.
+ virtual ~Task() {}
//! Virtual copy construction.
AutoPtr clone() const;
/*!
diff --git a/src/exiv2.cpp b/src/exiv2.cpp
index 65b2938..98d0e3d 100644
--- a/src/exiv2.cpp
+++ b/src/exiv2.cpp
@@ -55,10 +55,10 @@ namespace {
//! List of all command identifiers and corresponding strings
static const CmdIdAndString cmdIdAndString[] = {
- add, "add",
- set, "set",
- del, "del",
- invalidCmdId, "invalidCmd" // End of list marker
+ { add, "add" },
+ { set, "set" },
+ { del, "del" },
+ { invalidCmdId, "invalidCmd" } // End of list marker
};
// Return a command Id for a command string
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list