Codebase list libgdf / 0ffe969
Drop patch compile-with-g++-11.patch, present upstream. Debian Janitor 2 years ago
3 changed file(s) with 1 addition(s) and 28 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream snapshot.
33 * Drop patch check-system-endianness.patch, present upstream.
4 * Drop patch compile-with-g++-11.patch, present upstream.
45
56 -- Debian Janitor <janitor@jelmer.uk> Sun, 20 Mar 2022 00:44:17 -0000
67
+0
-27
debian/patches/compile-with-g++-11.patch less more
0 Description: Compile against g++ 11
1 Author: Rafael Laboissière <rafael@debian.org>
2 Bug-Debian: https://bugs.debian.org/984105
3 Forwarded: https://github.com/mbillingr/libgdf/pull/7
4 Last-Update: 2021-07-07
5
6 --- libgdf-0.1.3.orig/libgdf/include/GDF/EventConverter.h
7 +++ libgdf-0.1.3/libgdf/include/GDF/EventConverter.h
8 @@ -32,7 +32,6 @@ namespace gdf
9 /// @throws general if events could not be converted
10 std::vector<Mode3Event> convertMode1EventsIntoMode3Events (std::vector<Mode1Event>
11 - const& mode_1_events)
12 - throw (exception::general);
13 + const& mode_1_events);
14 }
15
16 #endif
17 --- libgdf-0.1.3.orig/libgdf/src/EventConverter.cpp
18 +++ libgdf-0.1.3/libgdf/src/EventConverter.cpp
19 @@ -34,7 +34,6 @@ namespace gdf
20
21 //-------------------------------------------------------------------------
22 vector<Mode3Event> convertMode1EventsIntoMode3Events (vector<Mode1Event> const& mode_1_events)
23 - throw (exception::general)
24 {
25 vector<Mode3Event> mode_3_events;
26
00 disable-werror.patch
1 compile-with-g++-11.patch