Skip to content

Commit 4b91cf4

Browse files
authored
Merge pull request #38 from geoff-m/bugfix/feature-test-macro
Fix feature test macro
2 parents 46da92d + 6453cf1 commit 4b91cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/interval-tree/feature_test.hpp

Lines changed: 1 addition & 1 deletion
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)