We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df80a7 commit c39b680Copy full SHA for c39b680
Framework/Core/include/Framework/AnalysisManagers.h
@@ -159,7 +159,9 @@ const char* controlOption()
159
}
160
161
template <typename T>
162
- requires(is_spawns<T> || is_builds<T> || is_defines<T>)
+concept with_base_table = requires(T const& t) { t.base_specs(); };
163
+
164
+template <with_base_table T>
165
bool requestInputs(std::vector<InputSpec>& inputs, T const& entity)
166
{
167
auto base_specs = entity.base_specs();
0 commit comments