From 6453cf187b2c119370470deb397a03b154ce46c0 Mon Sep 17 00:00:00 2001 From: Geoff McQueen Date: Sun, 25 Aug 2024 13:41:37 -0700 Subject: [PATCH] Fix feature test macro --- include/interval-tree/feature_test.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/interval-tree/feature_test.hpp b/include/interval-tree/feature_test.hpp index e0a73fd..4ca3ed5 100644 --- a/include/interval-tree/feature_test.hpp +++ b/include/interval-tree/feature_test.hpp @@ -9,7 +9,7 @@ // define LIB_INTERVAL_TREE_DEPRECATED if __attribute__((deprecated)) is not supported #ifndef LIB_INTERVAL_TREE_DEPRECATED -# if __has_cpp_attribute(depreacted) +# if __has_cpp_attribute(deprecated) # define LIB_INTERVAL_TREE_DEPRECATED [[deprecated]] # else # define LIB_INTERVAL_TREE_DEPRECATED __attribute__((deprecated))