aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/wide-int.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 72ea296..83e27da 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2016-05-17 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * wide-int.h: Change fixed_wide_int_storage from class to struct.
+
2016-05-17 Richard Biener <rguenther@suse.de>
PR tree-optimization/71132
diff --git a/gcc/wide-int.h b/gcc/wide-int.h
index 7dde74f..382d5f3 100644
--- a/gcc/wide-int.h
+++ b/gcc/wide-int.h
@@ -294,7 +294,7 @@ along with GCC; see the file COPYING3. If not see
HOST_WIDE_INT *VAL = RESULT.write_val ()
template <typename T> class generic_wide_int;
-template <int N> struct fixed_wide_int_storage;
+template <int N> class fixed_wide_int_storage;
class wide_int_storage;
/* An N-bit integer. Until we can use typedef templates, use this instead. */