From 09e628020d394c1fcbfea3a9e1bfceff556d7839 Mon Sep 17 00:00:00 2001 From: ado Date: Fri, 23 Feb 2024 01:01:31 +0100 Subject: [PATCH] Fix typo in common.hpp --- include/ss/common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ss/common.hpp b/include/ss/common.hpp index 45c4234..305503c 100644 --- a/include/ss/common.hpp +++ b/include/ss/common.hpp @@ -28,7 +28,7 @@ inline void assert_throw_on_error_not_defined() { "'throw_on_error' is enabled"); } -#if __unix__XX +#if __unix__ inline ssize_t get_line(char** lineptr, size_t* n, FILE* stream) { return getline(lineptr, n, stream); }