Skip to content

Commit

Permalink
Merge pull request #38 from geoff-m/bugfix/feature-test-macro
Browse files Browse the repository at this point in the history
Fix feature test macro
  • Loading branch information
5cript authored Aug 26, 2024
2 parents 46da92d + 6453cf1 commit 4b91cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/interval-tree/feature_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4b91cf4

Please sign in to comment.