OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr47313.C] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// { dg-do compile }
2
 
3
namespace internal {
4
    template < class DSC, bool Const >   struct CC_iterator   {
5
        typedef CC_iterator iterator;
6
        typedef typename DSC::value_type value_type;
7
        typedef const value_type* pointer;
8
        CC_iterator ()     ;
9
        CC_iterator (const iterator &it)     {
10
        }
11
        pointer p;
12
        pointer operator->() const ;
13
    };
14
}
15
template < class T > struct Compact_container {
16
    typedef Compact_container  Self;
17
    typedef T value_type;
18
    typedef internal::CC_iterator iterator;
19
};
20
template < typename TDS = void > struct Periodic_3_triangulation_ds_cell_base_3 {
21
    typedef typename TDS::Vertex_handle Vertex_handle;
22
    const Vertex_handle& vertex(int i) const   {
23
    }
24
};
25
struct Triangulation_data_structure_3    {
26
    typedef Triangulation_data_structure_3 Tds;
27
    typedef Periodic_3_triangulation_ds_cell_base_3 Cell;
28
    typedef Compact_container Cell_range;
29
    typedef Compact_container Vertex_range;
30
    typedef typename Cell_range::iterator Cell_handle;
31
    typedef typename Vertex_range::iterator Vertex_handle;
32
};
33
typedef Triangulation_data_structure_3 TDS1;
34
template <  class > struct Periodic_3_Delaunay_triangulation_3 {
35
    typedef TDS1::Vertex_handle Vertex_handle;
36
    typedef TDS1::Cell_handle Cell_handle;
37
    int compare_distance() const {
38
    }
39
    Vertex_handle nearest_vertex() const;
40
};
41
template < class Tds > typename Periodic_3_Delaunay_triangulation_3::Vertex_handle Periodic_3_Delaunay_triangulation_3::nearest_vertex() const {
42
    Cell_handle c ;
43
    Vertex_handle nearest = c->vertex(0);
44
    nearest = (compare_distance() == -1) ?       nearest : c->vertex(0);
45
    return nearest;
46
}
47
typedef Periodic_3_Delaunay_triangulation_3 PDT1;
48
struct Periodic_3_triangulation_hierarchy_3   : PDT1 {
49
    Vertex_handle   nearest_vertex() const;
50
};
51
Periodic_3_triangulation_hierarchy_3::Vertex_handle Periodic_3_triangulation_hierarchy_3:: nearest_vertex() const {
52
    return PDT1::nearest_vertex();
53
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.