Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
bde50b1b
Commit
bde50b1b
authored
8 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fs/io/{GunzipReader,GzipOutputStream: remove deprepcated dynamic exception specifications
parent
a34dfd55
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
GunzipReader.cxx
src/fs/io/GunzipReader.cxx
+2
-1
GunzipReader.hxx
src/fs/io/GunzipReader.hxx
+1
-2
GzipOutputStream.cxx
src/fs/io/GzipOutputStream.cxx
+1
-1
GzipOutputStream.hxx
src/fs/io/GzipOutputStream.hxx
+1
-2
No files found.
src/fs/io/GunzipReader.cxx
View file @
bde50b1b
...
@@ -19,8 +19,9 @@
...
@@ -19,8 +19,9 @@
#include "config.h"
#include "config.h"
#include "GunzipReader.hxx"
#include "GunzipReader.hxx"
#include "lib/zlib/Error.hxx"
GunzipReader
::
GunzipReader
(
Reader
&
_next
)
throw
(
ZlibError
)
GunzipReader
::
GunzipReader
(
Reader
&
_next
)
:
next
(
_next
),
eof
(
false
)
:
next
(
_next
),
eof
(
false
)
{
{
z
.
next_in
=
nullptr
;
z
.
next_in
=
nullptr
;
...
...
This diff is collapsed.
Click to expand it.
src/fs/io/GunzipReader.hxx
View file @
bde50b1b
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include "check.h"
#include "check.h"
#include "Reader.hxx"
#include "Reader.hxx"
#include "util/StaticFifoBuffer.hxx"
#include "util/StaticFifoBuffer.hxx"
#include "lib/zlib/Error.hxx"
#include "Compiler.h"
#include "Compiler.h"
#include <zlib.h>
#include <zlib.h>
...
@@ -44,7 +43,7 @@ public:
...
@@ -44,7 +43,7 @@ public:
/**
/**
* Construct the filter.
* Construct the filter.
*/
*/
GunzipReader
(
Reader
&
_next
)
throw
(
ZlibError
)
;
GunzipReader
(
Reader
&
_next
);
~
GunzipReader
()
{
~
GunzipReader
()
{
inflateEnd
(
&
z
);
inflateEnd
(
&
z
);
...
...
This diff is collapsed.
Click to expand it.
src/fs/io/GzipOutputStream.cxx
View file @
bde50b1b
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
#include "GzipOutputStream.hxx"
#include "GzipOutputStream.hxx"
#include "lib/zlib/Error.hxx"
#include "lib/zlib/Error.hxx"
GzipOutputStream
::
GzipOutputStream
(
OutputStream
&
_next
)
throw
(
ZlibError
)
GzipOutputStream
::
GzipOutputStream
(
OutputStream
&
_next
)
:
next
(
_next
)
:
next
(
_next
)
{
{
z
.
next_in
=
nullptr
;
z
.
next_in
=
nullptr
;
...
...
This diff is collapsed.
Click to expand it.
src/fs/io/GzipOutputStream.hxx
View file @
bde50b1b
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "check.h"
#include "check.h"
#include "OutputStream.hxx"
#include "OutputStream.hxx"
#include "lib/zlib/Error.hxx"
#include "Compiler.h"
#include "Compiler.h"
#include <zlib.h>
#include <zlib.h>
...
@@ -42,7 +41,7 @@ public:
...
@@ -42,7 +41,7 @@ public:
/**
/**
* Construct the filter.
* Construct the filter.
*/
*/
GzipOutputStream
(
OutputStream
&
_next
)
throw
(
ZlibError
)
;
GzipOutputStream
(
OutputStream
&
_next
);
~
GzipOutputStream
();
~
GzipOutputStream
();
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment