From 1dd96f20c605de8c16be39bc7b9337e1569adb3d Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Tue, 3 Dec 2024 23:40:18 -0500 Subject: [PATCH] fs: drop extra declaration of hexdump hexdump was moved into a template in its own header years ago, but the declaration of the implementation that used to be in fs.cc remains. Signed-off-by: Zygo Blaxell --- include/crucible/fs.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/crucible/fs.h b/include/crucible/fs.h index da624e5..6f95551 100644 --- a/include/crucible/fs.h +++ b/include/crucible/fs.h @@ -243,8 +243,6 @@ namespace crucible { unsigned long available() const; }; - template ostream &hexdump(ostream &os, const V &v); - struct BtrfsIoctlFsInfoArgs : public btrfs_ioctl_fs_info_args_v3 { BtrfsIoctlFsInfoArgs(); void do_ioctl(int fd);