diff options
author | Sven Gothel <[email protected]> | 2022-10-17 01:05:54 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-10-17 01:05:54 +0200 |
commit | 99bfa98e4a9e73b7de5a05e2acf90824f53ae95b (patch) | |
tree | d3363197b578dc43502632ee4640a09dbafbe2da /test/test_functional_perf.hpp | |
parent | 52e41fb9d03516a5f1cb10e93d4df0f5491b4efa (diff) |
cpp_lang_util.hpp: Have is_rtti_available* as a type trait and constexpr inline function, pulled-up from jau::type_info
Diffstat (limited to 'test/test_functional_perf.hpp')
-rw-r--r-- | test/test_functional_perf.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_functional_perf.hpp b/test/test_functional_perf.hpp index 7980a52..99ecb49 100644 --- a/test/test_functional_perf.hpp +++ b/test/test_functional_perf.hpp @@ -44,7 +44,8 @@ class TestFunction01 { */ void test00_usage() { INFO("Test 00_usage: START: Implementation = functional "+std::to_string( FUNCTIONAL_IMPL )); - fprintf(stderr, "Implementation: functional %d\n", FUNCTIONAL_IMPL); + fprintf(stderr, "Implementation: functional %d, is_rtti_available %d, limited_lambda_id %d\n", + FUNCTIONAL_IMPL, jau::is_rtti_available(), jau::type_info::limited_lambda_id); { // Test capturing lambdas volatile int i = 100; |