2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-21 03:02:10 +00:00
Files
graph/src/yystype.h
Jeremy Siek 9197a1028f added copyrights
[SVN r25810]
2004-10-20 13:20:19 +00:00

16 lines
369 B
C

// (C) Copyright Jeremy Siek 2004
// 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)
#ifndef BOOST_GRAPH_YYSTYPE_H
#define BOOST_GRAPH_YYSTYPE_H
union yystype {
int i;
void* ptr;
};
#define YYSTYPE yystype
#endif // BOOST_GRAPH_YYSTYPE_H