File: main.cpp

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (60 lines) | stat: -rw-r--r-- 1,380 bytes parent folder | download | duplicates (11)
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
#include <cstdio>
#include <string>
#include <vector>

// If we have libc++ 4.0 or greater we should have <variant>
// According to libc++ C++1z status page https://libcxx.llvm.org/cxx1z_status.html
#if _LIBCPP_VERSION >= 4000
#include <variant>
#define HAVE_VARIANT 1
#else
#define HAVE_VARIANT 0
#endif

struct S {
  operator int() { throw 42; }
} ;


int main()
{
    bool has_variant = HAVE_VARIANT ;

    printf( "%d\n", has_variant ) ; // break here

#if HAVE_VARIANT == 1
    std::variant<int, double, char> v1;
    std::variant<int, double, char> &v1_ref = v1;
    std::variant<int, double, char> v2;
    std::variant<int, double, char> v3;
    std::variant<std::variant<int,double,char>> v_v1 ;
    std::variant<int, double, char> v_no_value;

    v1 = 12; // v contains int
    v_v1 = v1 ;
    int i = std::get<int>(v1);
    printf( "%d\n", i ); // break here

    v2 = 2.0 ;
    double d = std::get<double>(v2) ;
    printf( "%f\n", d );

    v3 = 'A' ;
    char c = std::get<char>(v3) ;
    printf( "%d\n", c );

    // Checking v1 above and here to make sure we done maintain the incorrect
    // state when we change its value.
    v1 = 2.0;
    d = std::get<double>(v1) ;
    printf( "%f\n", d ); // break here

     try {
       v_no_value.emplace<0>(S());
     } catch( ... ) {}

     printf( "%zu\n", v_no_value.index() ) ;
#endif

    return 0; // break here
}