2
0
mirror of https://github.com/boostorg/pfr.git synced 2026-01-19 04:22:13 +00:00
Files
pfr/test/common/virtual_functions.cpp
Antony Polukhin ee7a716b6d Update copyrights
2018-06-02 12:21:56 +03:00

26 lines
626 B
C++

// Copyright (c) 2018 Antony Polukhin
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/pfr/flat/tuple_size.hpp>
#include <boost/pfr/precise/tuple_size.hpp>
struct test_with_virtual {
int i = 0;
char c = 'a';
double d = 3.4;
float f = 3.5f;
virtual double sum() const { return i + d + c + f; }
};
int main() {
#ifdef BOOST_PFR_TEST_FLAT
return boost::pfr::flat_tuple_size<test_with_virtual>::value;
#else
return boost::pfr::tuple_size<test_with_virtual>::value;
#endif
}