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
22f0ef6d
Commit
22f0ef6d
authored
Jan 02, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't include stdbool.h in C++ sources
The "bool" type is built-in.
parent
975deca8
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
20 deletions
+0
-20
DatabasePrint.hxx
src/DatabasePrint.hxx
+0
-2
InotifySource.cxx
src/InotifySource.cxx
+0
-1
InotifyUpdate.cxx
src/InotifyUpdate.cxx
+0
-1
PlaylistFile.hxx
src/PlaylistFile.hxx
+0
-1
PlaylistPrint.hxx
src/PlaylistPrint.hxx
+0
-1
PlaylistQueue.hxx
src/PlaylistQueue.hxx
+0
-2
PlaylistSong.hxx
src/PlaylistSong.hxx
+0
-2
SongFilter.hxx
src/SongFilter.hxx
+0
-1
UpdateArchive.hxx
src/UpdateArchive.hxx
+0
-1
UpdateInternal.hxx
src/UpdateInternal.hxx
+0
-2
UpdateWalk.hxx
src/UpdateWalk.hxx
+0
-2
SimpleDatabasePlugin.hxx
src/db/SimpleDatabasePlugin.hxx
+0
-1
FLACMetaData.cxx
src/decoder/FLACMetaData.cxx
+0
-1
FLACMetaData.hxx
src/decoder/FLACMetaData.hxx
+0
-1
RunInotify.cxx
test/RunInotify.cxx
+0
-1
No files found.
src/DatabasePrint.hxx
View file @
22f0ef6d
...
...
@@ -23,8 +23,6 @@
#include "gcc.h"
#include "gerror.h"
#include <stdbool.h>
struct
client
;
class
SongFilter
;
struct
DatabaseSelection
;
...
...
src/InotifySource.cxx
View file @
22f0ef6d
...
...
@@ -32,7 +32,6 @@ extern "C" {
#include <sys/inotify.h>
#include <unistd.h>
#include <errno.h>
#include <stdbool.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "inotify"
...
...
src/InotifyUpdate.cxx
View file @
22f0ef6d
...
...
@@ -31,7 +31,6 @@ extern "C" {
#include <assert.h>
#include <sys/inotify.h>
#include <sys/stat.h>
#include <stdbool.h>
#include <string.h>
#include <dirent.h>
#include <errno.h>
...
...
src/PlaylistFile.hxx
View file @
22f0ef6d
...
...
@@ -25,7 +25,6 @@
#include <string>
#include <glib.h>
#include <stdbool.h>
#include <time.h>
struct
song
;
...
...
src/PlaylistPrint.hxx
View file @
22f0ef6d
...
...
@@ -21,7 +21,6 @@
#define MPD_PLAYLIST_PRINT_HXX
#include <glib.h>
#include <stdbool.h>
#include <stdint.h>
struct
client
;
...
...
src/PlaylistQueue.hxx
View file @
22f0ef6d
...
...
@@ -26,8 +26,6 @@
#include "playlist_error.h"
#include <stdbool.h>
struct
playlist_provider
;
struct
playlist
;
struct
player_control
;
...
...
src/PlaylistSong.hxx
View file @
22f0ef6d
...
...
@@ -20,8 +20,6 @@
#ifndef MPD_PLAYLIST_SONG_HXX
#define MPD_PLAYLIST_SONG_HXX
#include <stdbool.h>
/**
* Verifies the song, returns NULL if it is unsafe. Translate the
* song to a new song object within the database, if it is a local
...
...
src/SongFilter.hxx
View file @
22f0ef6d
...
...
@@ -25,7 +25,6 @@
#include <list>
#include <stdint.h>
#include <stdbool.h>
#define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10
#define LOCATE_TAG_ANY_TYPE TAG_NUM_OF_ITEM_TYPES+20
...
...
src/UpdateArchive.hxx
View file @
22f0ef6d
...
...
@@ -23,7 +23,6 @@
#include "check.h"
#include "gcc.h"
#include <stdbool.h>
#include <sys/stat.h>
struct
directory
;
...
...
src/UpdateInternal.hxx
View file @
22f0ef6d
...
...
@@ -22,8 +22,6 @@
#include "check.h"
#include <stdbool.h>
extern
bool
walk_discard
;
extern
bool
modified
;
...
...
src/UpdateWalk.hxx
View file @
22f0ef6d
...
...
@@ -22,8 +22,6 @@
#include "check.h"
#include <stdbool.h>
void
update_walk_global_init
(
void
);
...
...
src/db/SimpleDatabasePlugin.hxx
View file @
22f0ef6d
...
...
@@ -26,7 +26,6 @@
#include <cassert>
#include <string>
#include <stdbool.h>
#include <time.h>
struct
directory
;
...
...
src/decoder/FLACMetaData.cxx
View file @
22f0ef6d
...
...
@@ -32,7 +32,6 @@ extern "C" {
#include <glib.h>
#include <assert.h>
#include <stdbool.h>
#include <stdlib.h>
static
bool
...
...
src/decoder/FLACMetaData.hxx
View file @
22f0ef6d
...
...
@@ -26,7 +26,6 @@
#include <FLAC/metadata.h>
#include <assert.h>
#include <stdbool.h>
class
FLACMetadataChain
{
FLAC__Metadata_Chain
*
chain
;
...
...
test/RunInotify.cxx
View file @
22f0ef6d
...
...
@@ -22,7 +22,6 @@
#include <glib.h>
#include <stdbool.h>
#include <sys/inotify.h>
#include <signal.h>
...
...
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