DecoderBuffer: add "pure" attributes

This commit is contained in:
Max Kellermann 2014-01-06 22:16:56 +01:00
parent 9d9697b366
commit 5958b78459
1 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,8 @@
#ifndef MPD_DECODER_BUFFER_HXX
#define MPD_DECODER_BUFFER_HXX
#include "Compiler.h"
#include <stddef.h>
/**
@ -50,9 +52,11 @@ decoder_buffer_new(Decoder *decoder, InputStream &is,
void
decoder_buffer_free(DecoderBuffer *buffer);
gcc_pure
bool
decoder_buffer_is_empty(const DecoderBuffer *buffer);
gcc_pure
bool
decoder_buffer_is_full(const DecoderBuffer *buffer);