| 50 | struct TestClassB { |
| 51 | template<typename V> |
| 52 | U func2([[maybe_unused]] V v, [[maybe_unused]] int i) |
| 53 | { |
| 54 | debug_out_info("default", DBG_FUNC_PRNAME << "\n"); |
| 55 | debug_out_info("default", DBG_FUNC_MSG << "function called.\n"); |
| 56 | return 0; |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | /// Libdebug test struct |