File: test_deduce_result_type.cc

package info (click to toggle)
libsigc%2B%2B-2.0 2.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: cpp: 4,132; xml: 339; python: 196; makefile: 192; sh: 5
file content (76 lines) | stat: -rw-r--r-- 1,512 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// -*- c++ -*-
/* Copyright 2002, The libsigc++ Development Team
 *  Assigned to public domain.  Use as you wish without restriction.
 */

#include "testutilities.h"
#include <sstream>
#include <cstdlib>
#include <sigc++/sigc++.h>

namespace
{
std::ostringstream result_stream;

template <class T>
void bar(T)
{
  result_stream << "unknown";
}

template <>
void bar<int>(int)
{
  result_stream << "int";
}

template <>
void bar<double>(double)
{
  result_stream << "double";
}

struct foo : public sigc::functor_base
{
  typedef double result_type;

  int operator()(int i = 1);
  double operator()(const int&, int);
};

struct foo2 : public foo
{};

struct foo3 : public sigc::functor_base
{
  typedef int result_type;

  int operator()(int i = 1);
  double operator()(const int&, int);
};

} // end anonymous namespace

int main(int argc, char* argv[])
{
  auto util = TestUtilities::get_instance();

  if (!util->check_command_args(argc, argv))
    return util->get_result_and_delete_instance() ? EXIT_SUCCESS : EXIT_FAILURE;

  bar(sigc::deduce_result_t<foo2, long>());
  util->check_result(result_stream, "double");

  bar(sigc::deduce_result_t<foo2, int, int>());
  util->check_result(result_stream, "double");

  bar(sigc::deduce_result_t<foo3, int, int>());
  util->check_result(result_stream, "int");

#ifdef FAIL
  bar(sigc::deduce_result_t<foo2, int, int, int>());
  util->check_result(result_stream, "double");
#endif

  return util->get_result_and_delete_instance() ? EXIT_SUCCESS : EXIT_FAILURE;
}