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
155fc8fa
Commit
155fc8fa
authored
Jul 23, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include cleanup
parent
7daf80a0
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
18 additions
and
13 deletions
+18
-13
UniqueFileDescriptor.hxx
src/io/UniqueFileDescriptor.hxx
+2
-2
Operation.cxx
src/io/uring/Operation.cxx
+2
-0
Queue.cxx
src/io/uring/Queue.cxx
+0
-3
AppendIter.hxx
src/lib/dbus/AppendIter.hxx
+2
-0
AddressInfo.hxx
src/net/AddressInfo.hxx
+4
-3
AllocatedSocketAddress.hxx
src/net/AllocatedSocketAddress.hxx
+1
-1
SocketAddress.hxx
src/net/SocketAddress.hxx
+2
-2
SocketDescriptor.cxx
src/net/SocketDescriptor.cxx
+1
-0
Error.hxx
src/system/Error.hxx
+2
-2
StringCompare.cxx
src/util/StringCompare.cxx
+2
-0
No files found.
src/io/UniqueFileDescriptor.hxx
View file @
155fc8fa
/*
* Copyright 2012-20
18
Max Kellermann <max.kellermann@gmail.com>
* Copyright 2012-20
20
Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -30,7 +30,7 @@
#ifndef UNIQUE_FILE_DESCRIPTOR_HXX
#define UNIQUE_FILE_DESCRIPTOR_HXX
#include "FileDescriptor.hxx"
#include "FileDescriptor.hxx"
// IWYU pragma: export
#include <cassert>
#include <utility>
...
...
src/io/uring/Operation.cxx
View file @
155fc8fa
...
...
@@ -33,6 +33,8 @@
#include "Operation.hxx"
#include "CancellableOperation.hxx"
#include <utility>
namespace
Uring
{
void
...
...
src/io/uring/Queue.cxx
View file @
155fc8fa
...
...
@@ -32,11 +32,8 @@
#include "Queue.hxx"
#include "CancellableOperation.hxx"
#include "Operation.hxx"
#include "util/DeleteDisposer.hxx"
#include <cassert>
namespace
Uring
{
Queue
::
Queue
(
unsigned
entries
,
unsigned
flags
)
...
...
src/lib/dbus/AppendIter.hxx
View file @
155fc8fa
...
...
@@ -36,6 +36,8 @@
#include "Iter.hxx"
#include "Values.hxx"
#include <stdexcept>
namespace
ODBus
{
class
AppendMessageIter
:
public
MessageIter
{
...
...
src/net/AddressInfo.hxx
View file @
155fc8fa
/*
* Copyright 2016-20
19
Max Kellermann <max.kellermann@gmail.com>
* Copyright 2016-20
20
Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -31,13 +31,14 @@
#define NET_ADDRESS_INFO_HXX
#include "SocketAddress.hxx"
#include "util/Compiler.h"
#include <utility>
#ifdef _WIN32
#include <ws2tcpip.h>
#include <ws2tcpip.h>
// IWYU pragma: export
#else
#include <netdb.h>
#include <netdb.h>
// IWYU pragma: export
#endif
constexpr
struct
addrinfo
...
...
src/net/AllocatedSocketAddress.hxx
View file @
155fc8fa
...
...
@@ -30,7 +30,7 @@
#ifndef ALLOCATED_SOCKET_ADDRESS_HXX
#define ALLOCATED_SOCKET_ADDRESS_HXX
#include "SocketAddress.hxx"
#include "SocketAddress.hxx"
// IWYU pragma: export
#include "Features.hxx"
#include "util/Compiler.h"
...
...
src/net/SocketAddress.hxx
View file @
155fc8fa
...
...
@@ -36,9 +36,9 @@
#include <cstddef>
#ifdef _WIN32
#include <winsock2.h>
#include <winsock2.h>
// IWYU pragma: export
#else
#include <sys/socket.h>
#include <sys/socket.h>
// IWYU pragma: export
#endif
template
<
typename
T
>
struct
ConstBuffer
;
...
...
src/net/SocketDescriptor.cxx
View file @
155fc8fa
...
...
@@ -42,6 +42,7 @@
#include <netinet/tcp.h>
#endif
#include <cassert>
#include <cerrno>
#include <string.h>
...
...
src/system/Error.hxx
View file @
155fc8fa
...
...
@@ -32,7 +32,7 @@
#include "util/Compiler.h"
#include <system_error>
#include <system_error>
// IWYU pragma: export
#include <utility>
#include <stdio.h>
...
...
@@ -92,7 +92,7 @@ FormatLastError(const char *fmt, Args&&... args) noexcept
#endif
/* _WIN32 */
#include <cerrno>
#include <cerrno>
// IWYU pragma: export
#include <string.h>
...
...
src/util/StringCompare.cxx
View file @
155fc8fa
...
...
@@ -29,6 +29,8 @@
#include "StringCompare.hxx"
#include <string.h>
bool
StringEndsWith
(
const
char
*
haystack
,
const
char
*
needle
)
noexcept
{
...
...
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