diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-12-07 21:39:55 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-12-07 21:39:55 +0000 |
commit | 4ac28dd88f48bf4b60b62bef8513c737b9c8e53e (patch) | |
tree | f4e3d86bde2d39bc35154ae721a545c464151d8c /cad/gnucap/files | |
parent | ee1905a4b60861c47ba478dc12c99fd4919edace (diff) | |
download | ports-4ac28dd88f48bf4b60b62bef8513c737b9c8e53e.tar.gz ports-4ac28dd88f48bf4b60b62bef8513c737b9c8e53e.zip |
Notes
Diffstat (limited to 'cad/gnucap/files')
-rw-r--r-- | cad/gnucap/files/patch-modelgen__mg_.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/cad/gnucap/files/patch-modelgen__mg_.h b/cad/gnucap/files/patch-modelgen__mg_.h new file mode 100644 index 000000000000..a104d4865040 --- /dev/null +++ b/cad/gnucap/files/patch-modelgen__mg_.h @@ -0,0 +1,44 @@ +--- modelgen/mg_.h.orig 2009-12-08 08:19:15.000000000 +0900 ++++ modelgen/mg_.h 2012-10-14 00:54:09.000000000 +0900 +@@ -108,6 +108,20 @@ + size_t size()const {return _list.size();} + }; + /*--------------------------------------------------------------------------*/ ++class C_Comment ++ :public Base ++{ ++public: ++ void parse(CS& f); ++}; ++/*--------------------------------------------------------------------------*/ ++class Cxx_Comment ++ :public Base ++{ ++public: ++ void parse(CS& f); ++}; ++/*--------------------------------------------------------------------------*/ + /* A "Collection" differs from a "List" in how it is parsed. + * Each parse of a "Collection" created one more object and stores + * it in the Collection. The size of the Collection therefore grows by 1. +@@ -200,20 +214,6 @@ + } + }; + /*--------------------------------------------------------------------------*/ +-class C_Comment +- :public Base +-{ +-public: +- void parse(CS& f); +-}; +-/*--------------------------------------------------------------------------*/ +-class Cxx_Comment +- :public Base +-{ +-public: +- void parse(CS& f); +-}; +-/*--------------------------------------------------------------------------*/ + class Key + :public Base + { |