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
eea2d35d
Commit
eea2d35d
authored
Nov 19, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/AllocatedString, ...: add missing include for std::exchange()
Fixes building with GCC 12.
parent
d94e8bd8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
2 deletions
+6
-2
NEWS
NEWS
+1
-0
InputStream.hxx
src/input/InputStream.hxx
+1
-0
Slist.hxx
src/lib/curl/Slist.hxx
+1
-1
Handle.hxx
src/lib/yajl/Handle.hxx
+1
-1
AllocatedArray.hxx
src/util/AllocatedArray.hxx
+1
-0
AllocatedString.hxx
src/util/AllocatedString.hxx
+1
-0
No files found.
NEWS
View file @
eea2d35d
ver 0.23.5 (not yet released)
* GCC 12 build fixes
ver 0.23.4 (2021/11/11)
* protocol
...
...
src/input/InputStream.hxx
View file @
eea2d35d
...
...
@@ -27,6 +27,7 @@
#include <cassert>
#include <memory>
#include <string>
#include <utility>
struct
Tag
;
class
InputStreamHandler
;
...
...
src/lib/curl/Slist.hxx
View file @
eea2d35d
...
...
@@ -32,8 +32,8 @@
#include <curl/curl.h>
#include <algorithm>
#include <stdexcept>
#include <utility>
/**
* OO wrapper for "struct curl_slist *".
...
...
src/lib/yajl/Handle.hxx
View file @
eea2d35d
...
...
@@ -32,7 +32,7 @@
#include <yajl/yajl_parse.h>
#include <
algorithm
>
#include <
utility
>
namespace
Yajl
{
...
...
src/util/AllocatedArray.hxx
View file @
eea2d35d
...
...
@@ -35,6 +35,7 @@
#include <algorithm>
#include <cassert>
#include <utility>
/**
* An array allocated on the heap with a length determined at runtime.
...
...
src/util/AllocatedString.hxx
View file @
eea2d35d
...
...
@@ -35,6 +35,7 @@
#include <algorithm>
#include <cstddef>
#include <string_view>
#include <utility>
/**
* A string pointer whose memory is managed by this class.
...
...
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