Home
last modified time | relevance | path

Searched refs:deep_hierarchy (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dhicpp-exception-baseclass.cpp9 class deep_hierarchy : public derived_exception {}; class
89 throw deep_hierarchy(); // Ok, multiple levels of inheritance in allowed_throws()
90 } catch (deep_hierarchy &e) { // Ok in allowed_throws()
92 throw deep_hierarchy(); // Ok in allowed_throws()
132 #define THROW_DERIVED_EXCEPTION throw deep_hierarchy();
148 THROW_EXCEPTION(deep_hierarchy); // Ok in generic_exceptions()
181 using UsingGood = deep_hierarchy;