Skip to content
Snippets Groups Projects

add functionality to remove an added marker

Merged Praetorius, Simon requested to merge issue/remove_marker into master
Files
45
@@ -40,4 +40,16 @@ check_cxx_source_compiles("
std::cout << elem << std::endl;
}
" AMDIS_HAS_EXPANSION_STATEMENTS
)
\ No newline at end of file
)
check_cxx_source_compiles("
template <auto n>
struct Foo {};
int main()
{
Foo<0> foo_int;
Foo<true> foo_bool;
Foo<1u> foo_unsigned;
}
" AMDIS_HAS_CXX_AUTO_TEMPLATE_PARAMETER
)
Loading