Skip to content

Commit 6453cf1

Browse files
committed
Fix feature test macro
1 parent 46da92d commit 6453cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/interval-tree/feature_test.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// define LIB_INTERVAL_TREE_DEPRECATED if __attribute__((deprecated)) is not supported
1111
#ifndef LIB_INTERVAL_TREE_DEPRECATED
12-
# if __has_cpp_attribute(depreacted)
12+
# if __has_cpp_attribute(deprecated)
1313
# define LIB_INTERVAL_TREE_DEPRECATED [[deprecated]]
1414
# else
1515
# define LIB_INTERVAL_TREE_DEPRECATED __attribute__((deprecated))

0 commit comments

Comments
 (0)