diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2014-07-05 18:41:08 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2014-07-05 18:41:08 +0000 |
commit | a4ff2ef3c063b01e58c92487643e0bf36f66706f (patch) | |
tree | f5b547464a0966295523a30e85372d2c28812cf8 | |
parent | 058d0a9059789682ccef8f56aa04182d71d17e78 (diff) | |
download | gcc-a4ff2ef3c063b01e58c92487643e0bf36f66706f.zip gcc-a4ff2ef3c063b01e58c92487643e0bf36f66706f.tar.gz gcc-a4ff2ef3c063b01e58c92487643e0bf36f66706f.tar.bz2 |
wide-int.h (wide_int_storage): Change declaration from struct to class.
* wide-int.h (wide_int_storage): Change declaration from struct
to class.
From-SVN: r212305
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/wide-int.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5cab9dd..0f1a80d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-07-05 Gerald Pfeifer <gerald@pfeifer.com> + + * wide-int.h (wide_int_storage): Change declaration from struct + to class. + 2014-07-05 Jan Hubicka <hubicka@ucw.cz> * cgraph.c (cgraph_create_indirect_edge): Update call of diff --git a/gcc/wide-int.h b/gcc/wide-int.h index bb51ed2..f108116 100644 --- a/gcc/wide-int.h +++ b/gcc/wide-int.h @@ -284,7 +284,7 @@ along with GCC; see the file COPYING3. If not see template <typename T> struct generic_wide_int; template <int N> struct fixed_wide_int_storage; -struct wide_int_storage; +class wide_int_storage; /* An N-bit integer. Until we can use typedef templates, use this instead. */ #define FIXED_WIDE_INT(N) \ |