diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-09 14:36:57 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-09 14:36:57 +0000 |
commit | 314ef609001bd511c7a7ef243191bcd471bffa1c (patch) | |
tree | 910104ef7b9c89960cbefd29c348c60b871e5dd2 | |
parent | 1e8ac58bb4e85df3fe329425128f95581252498f (diff) |
Fix a compiler warning on Clang.
-rw-r--r-- | include/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/defs.h b/include/defs.h index c130a11df..2286a8e41 100644 --- a/include/defs.h +++ b/include/defs.h @@ -23,7 +23,7 @@ struct ChanUserContainer; class ClientSocket; class Command; class CommandSource; -namespace Configuration { struct Conf; } +namespace Configuration { class Conf; } class ConnectionSocket; namespace DNS { struct Query; } class Entry; |