aboutsummaryrefslogtreecommitdiff
path: root/src/decoder
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 20:56:04 +0100
committerMax Kellermann <max@duempel.org>2013-01-02 20:56:04 +0100
commit22f0ef6d6b2d2c66def0e0e93442b01089e388e9 (patch)
treec0aa86dccc8c83c4a14400023aa645b158d24e9e /src/decoder
parent975deca85b3fb881571203c9a2cad4eb242cd954 (diff)
don't include stdbool.h in C++ sources
The "bool" type is built-in.
Diffstat (limited to 'src/decoder')
-rw-r--r--src/decoder/FLACMetaData.cxx1
-rw-r--r--src/decoder/FLACMetaData.hxx1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/decoder/FLACMetaData.cxx b/src/decoder/FLACMetaData.cxx
index 158e426d..561c1591 100644
--- a/src/decoder/FLACMetaData.cxx
+++ b/src/decoder/FLACMetaData.cxx
@@ -32,7 +32,6 @@ extern "C" {
#include <glib.h>
#include <assert.h>
-#include <stdbool.h>
#include <stdlib.h>
static bool
diff --git a/src/decoder/FLACMetaData.hxx b/src/decoder/FLACMetaData.hxx
index 7b5eb8b0..0eceec23 100644
--- a/src/decoder/FLACMetaData.hxx
+++ b/src/decoder/FLACMetaData.hxx
@@ -26,7 +26,6 @@
#include <FLAC/metadata.h>
#include <assert.h>
-#include <stdbool.h>
class FLACMetadataChain {
FLAC__Metadata_Chain *chain;