summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPackageStack.cxx
blob: 6f5045ae74adfd7d27cd5a8b32d048866d89bae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file LICENSE.rst or https://cmake.org/licensing for details.  */
#define cmFindPackageStack_cxx
#include "cmFindPackageStack.h"

#include "cmStack.tcc" // IWYU pragma: keep
template class cmStack<cmFindPackageCall, cmFindPackageStack>;

template cmFindPackageCall&
cmStack<cmFindPackageCall, cmFindPackageStack>::Top<true>();

cmFindPackageCall const& cmFindPackageStack::Top() const
{
  return this->cmStack::Top();
}