/src/CMake/Source/cmFindPackageStack.cxx
Line | Count | Source |
1 | | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying |
2 | | file LICENSE.rst or https://cmake.org/licensing for details. */ |
3 | | #define cmFindPackageStack_cxx |
4 | | #include "cmFindPackageStack.h" |
5 | | |
6 | | #include "cmStack.tcc" // IWYU pragma: keep |
7 | | template class cmStack<cmFindPackageCall, cmFindPackageStack>; |
8 | | |
9 | | template cmFindPackageCall& |
10 | | cmStack<cmFindPackageCall, cmFindPackageStack>::Top<true>(); |
11 | | |
12 | | cmFindPackageCall const& cmFindPackageStack::Top() const |
13 | 0 | { |
14 | 0 | return this->cmStack::Top(); |
15 | 0 | } |