aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/wide-int.h2
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) \