cppast/src/cpp_variable_template.cpp
2022-02-07 20:43:22 +01:00

18 lines
417 B
C++

// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
// SPDX-License-Identifier: MIT
#include <cppast/cpp_variable_template.hpp>
#include <cppast/cpp_entity_kind.hpp>
using namespace cppast;
cpp_entity_kind cpp_variable_template::kind() noexcept
{
return cpp_entity_kind::variable_template_t;
}
cpp_entity_kind cpp_variable_template::do_get_entity_kind() const noexcept
{
return kind();
}