From f5b22bf2c31fdd2fa4451c1727f03b9157574277 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 14 Mar 2023 20:19:57 +0100 Subject: [PATCH] input/Offset: remove unused macro `PRIoffset` --- src/input/Offset.hxx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/input/Offset.hxx b/src/input/Offset.hxx index 130fdef0c..45bc1abc6 100644 --- a/src/input/Offset.hxx +++ b/src/input/Offset.hxx @@ -1,8 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later // Copyright The Music Player Daemon Project -#ifndef MPD_OFFSET_HXX -#define MPD_OFFSET_HXX +#pragma once #include @@ -10,11 +9,3 @@ * A type for absolute offsets in a file. */ typedef uint64_t offset_type; - -/** - * To format an offset_type with printf(). To use this, include - * . - */ -#define PRIoffset PRIu64 - -#endif